~ubuntu-branches/debian/jessie/glib2.0/jessie

« back to all changes in this revision

Viewing changes to gio/gfilenamecompleter.c

  • Committer: Bazaar Package Importer
  • Author(s): Gustavo Noronha Silva
  • Date: 2009-02-15 13:00:43 UTC
  • mfrom: (1.3.1 upstream) (69.1.10 intrepid)
  • Revision ID: james.westby@ubuntu.com-20090215130043-q47fbt3owmt42m2f
Tags: 2.18.4-2
* Release to unstable
* debian/rules:
- bump SHVER, since we are already forcing a 2.18.0 dependecy on the
  symbols introduced in the development versions
* debian/control.in:
- added Homepage and Vcs-* control fields

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
 * Author: Alexander Larsson <alexl@redhat.com>
21
21
 */
22
22
 
23
 
#include <config.h>
 
23
#include "config.h"
24
24
#include "gfilenamecompleter.h"
25
 
#include "gurifuncs.h"
 
25
#include "gfileenumerator.h"
 
26
#include "gfileattribute.h"
26
27
#include "gfile.h"
 
28
#include "gfileinfo.h"
 
29
#include "gcancellable.h"
27
30
#include <string.h>
28
31
#include "glibintl.h"
29
32
 
86
89
 
87
90
  g_list_foreach (completer->basenames, (GFunc)g_free, NULL);
88
91
  g_list_free (completer->basenames);
89
 
  
90
 
  if (G_OBJECT_CLASS (g_filename_completer_parent_class)->finalize)
91
 
    (*G_OBJECT_CLASS (g_filename_completer_parent_class)->finalize) (object);
 
92
 
 
93
  G_OBJECT_CLASS (g_filename_completer_parent_class)->finalize (object);
92
94
}
93
95
 
94
96
static void
102
104
   * 
103
105
   * Emitted when the file name completion information comes available.
104
106
   **/
105
 
  signals[GOT_COMPLETION_DATA] = g_signal_new (I_("got_completion_data"),
 
107
  signals[GOT_COMPLETION_DATA] = g_signal_new (I_("got-completion-data"),
106
108
                                          G_TYPE_FILENAME_COMPLETER,
107
109
                                          G_SIGNAL_RUN_LAST,
108
110
                                          G_STRUCT_OFFSET (GFilenameCompleterClass, got_completion_data),