~ubuntu-branches/debian/sid/gnome-terminal/sid

« back to all changes in this revision

Viewing changes to src/eggsmclient-xsmp.c

  • Committer: Bazaar Package Importer
  • Author(s): Sebastian Dröge
  • Date: 2009-09-22 14:02:42 UTC
  • mfrom: (1.3.35 upstream) (7.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090922140242-0jvnwru579qpxcft
Tags: 2.28.0-1
* New upstream stable release:
  + debian/control.in:
    - Update build dependencies.
  + debian/patches/02_let_gconf_autostart.patch,
    debian/patches/03_useless_plural_forms.patch:
    - Dropped, merged upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1087
1087
 
1088
1088
  if (client_id)
1089
1089
    {
1090
 
      g_ptr_array_add (cmd, "--sm-client-id");
 
1090
      g_ptr_array_add (cmd, (char *)"--sm-client-id");
1091
1091
      g_ptr_array_add (cmd, (char *)client_id);
1092
1092
    }
1093
1093
 
1094
1094
  if (state_file)
1095
1095
    {
1096
 
      g_ptr_array_add (cmd, "--sm-client-state-file");
 
1096
      g_ptr_array_add (cmd, (char *)"--sm-client-state-file");
1097
1097
      g_ptr_array_add (cmd, (char *)state_file);
1098
1098
    }
1099
1099
 
1176
1176
 
1177
1177
  prop = g_new (SmProp, 1);
1178
1178
  prop->name = (char *)name;
1179
 
  prop->type = SmLISTofARRAY8;
 
1179
  prop->type = (char *)SmLISTofARRAY8;
1180
1180
 
1181
1181
  vals = g_array_new (FALSE, FALSE, sizeof (SmPropValue));
1182
1182
 
1210
1210
 
1211
1211
  prop = g_new (SmProp, 1);
1212
1212
  prop->name = (char *)name;
1213
 
  prop->type = SmLISTofARRAY8;
 
1213
  prop->type = (char *)SmLISTofARRAY8;
1214
1214
 
1215
1215
  vals = g_array_new (FALSE, FALSE, sizeof (SmPropValue));
1216
1216
 
1240
1240
 
1241
1241
  prop = g_new (SmProp, 1);
1242
1242
  prop->name = (char *)name;
1243
 
  prop->type = SmARRAY8;
 
1243
  prop->type = (char *)SmARRAY8;
1244
1244
 
1245
1245
  prop->num_vals = 1;
1246
1246
  prop->vals = g_new (SmPropValue, 1);
1265
1265
 
1266
1266
  prop = g_new (SmProp, 1);
1267
1267
  prop->name = (char *)name;
1268
 
  prop->type = SmCARD8;
 
1268
  prop->type = (char *)SmCARD8;
1269
1269
 
1270
1270
  prop->num_vals = 1;
1271
1271
  prop->vals = g_new (SmPropValue, 2);