~ubuntu-branches/ubuntu/quantal/thunar/quantal

« back to all changes in this revision

Viewing changes to .pc/02_thunar-icon-naming-spec-compliance.patch/thunar/thunar-application.c

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2011-01-30 20:05:10 UTC
  • mfrom: (1.1.31 upstream)
  • Revision ID: james.westby@ubuntu.com-20110130200510-r0mwai90pd8in8zr
Tags: 1.2.1-0ubuntu1
New upstream bugfix release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1237
1237
 
1238
1238
 
1239
1239
 
 
1240
static void
 
1241
thunar_application_rename_file_finished (ExoJob  *job,
 
1242
                                         gpointer user_data)
 
1243
{
 
1244
  _thunar_return_if_fail (EXO_IS_JOB (job));
 
1245
 
 
1246
  /* destroy the job object */
 
1247
  g_object_unref (job);
 
1248
}
 
1249
 
 
1250
 
 
1251
 
1240
1252
/**
1241
1253
 * thunar_application_rename_file:
1242
1254
 * @application : a #ThunarApplication.
1275
1287
      /* handle rename errors */
1276
1288
      g_signal_connect (job, "error", 
1277
1289
                        G_CALLBACK (thunar_application_rename_file_error), application);
 
1290
 
 
1291
      /* destroy the job when it has finished */
 
1292
      g_signal_connect (job, "finished",
 
1293
                        G_CALLBACK (thunar_application_rename_file_finished), NULL);
1278
1294
    }
1279
1295
}
1280
1296