~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/item.cc

  • Committer: Nathan Williams
  • Date: 2009-06-05 23:18:55 UTC
  • mto: This revision was merged to the branch mainline in revision 1063.
  • Revision ID: nathanlws@gmail.com-20090605231855-8ea4406867is6grf
No actual code changes. Changed Send_field to SendField to be consistent with coding standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1253
1253
  return (Item**) not_found_item;
1254
1254
}
1255
1255
 
1256
 
void Item::init_make_field(Send_field *tmp_field,
 
1256
void Item::init_make_field(SendField *tmp_field,
1257
1257
                           enum enum_field_types field_type_arg)
1258
1258
{
1259
1259
  char *empty_name= (char*) "";
1271
1271
  tmp_field->decimals=decimals;
1272
1272
}
1273
1273
 
1274
 
void Item::make_field(Send_field *tmp_field)
 
1274
void Item::make_field(SendField *tmp_field)
1275
1275
{
1276
1276
  init_make_field(tmp_field, field_type());
1277
1277
}