diff options
author | Saurabh <srp201201051@gmail.com> | 2014-06-27 22:11:09 +0530 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2014-06-28 00:41:09 -0400 |
commit | 931958f9f48d0791b65073ed02047904aedaa10f (patch) | |
tree | 502a43e92c342dc5fd50c8ff2589f1358ff94672 /gtk/gtkentrycompletion.h | |
parent | aa30278e6b69bfe109d6a930c19078f8ff35d53b (diff) | |
download | gtk+-931958f9f48d0791b65073ed02047904aedaa10f.tar.gz |
Adding 'no-matches' signal support to gtkentrycompletion
Add a new 'no-matches' signal and add a function pointer to gtkentrycompletionclass
and remove one from the padding at the end.
https://bugzilla.gnome.org/show_bug.cgi?id=726566
Diffstat (limited to 'gtk/gtkentrycompletion.h')
-rw-r--r-- | gtk/gtkentrycompletion.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkentrycompletion.h b/gtk/gtkentrycompletion.h index 69f74c8629..d0f5d08e6d 100644 --- a/gtk/gtkentrycompletion.h +++ b/gtk/gtkentrycompletion.h @@ -87,12 +87,12 @@ struct _GtkEntryCompletionClass gboolean (* cursor_on_match) (GtkEntryCompletion *completion, GtkTreeModel *model, GtkTreeIter *iter); + void (* no_matches) (GtkEntryCompletion *completion); /* Padding for future expansion */ void (*_gtk_reserved0) (void); void (*_gtk_reserved1) (void); void (*_gtk_reserved2) (void); - void (*_gtk_reserved3) (void); }; /* core */ |