~ubuntu-branches/ubuntu/natty/xfce4-panel/natty

« back to all changes in this revision

Viewing changes to plugins/directorymenu/directorymenu.c

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2011-04-06 20:59:14 UTC
  • mfrom: (1.1.31 upstream)
  • Revision ID: james.westby@ubuntu.com-20110406205914-6gd3dxr2ri71vxb7
Tags: 4.8.3-0ubuntu1
* New upstream bugfix release. lp: #752791
* debian/patches:
  - 0001-Tasklist-add-button-release-event-to-proxy-item-bug-.patch:
    dropped, included upstream.
  - xubuntu_support-multiple-vendor-default-configs.patch: refreshed
    to apply cleanly.
  - series: refreshed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
224
224
  gchar                *display_name;
225
225
  gchar               **array;
226
226
  guint                 i;
227
 
  GFile                *base_directory;
228
227
  const gchar          *path;
229
228
 
230
229
  switch (prop_id)
238
237
        g_object_unref (G_OBJECT (plugin->base_directory));
239
238
      plugin->base_directory = g_file_new_for_commandline_arg (path);
240
239
 
241
 
      base_directory = g_file_new_for_commandline_arg (g_value_get_string (value));
242
 
 
243
240
      display_name = g_file_get_parse_name (plugin->base_directory);
244
241
      gtk_widget_set_tooltip_text (plugin->button, display_name);
245
242