2006-10-24 Daniel Elstner <daniel.kitta@gmail.com>
authorMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Mon, 23 Oct 2006 09:42:59 +0000 (09:42 +0000)
committerMichael Dominic Kostrzewa <michael.kostrzewa@nokia.com>
Mon, 23 Oct 2006 09:42:59 +0000 (09:42 +0000)
* hildon-widgets/hildon-find-toolbar.h (search, close,
invalid_input, history_append): Remove the final user_data
  parameter from the signal prototypes.  The user_data pointer
  is a generic feature of GLib signal handling and not supposed
  to be declared explicitely. (MB#185)

ChangeLog
hildon-widgets/hildon-find-toolbar.h

index 21f674d..f98e21f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2006-10-24  Daniel Elstner  <daniel.kitta@gmail.com>
+       * hildon-widgets/hildon-find-toolbar.h (search, close,
+       invalid_input, history_append): Remove the final user_data
+       parameter from the signal prototypes.  The user_data pointer
+       is a generic feature of GLib signal handling and not supposed
+       to be declared explicitely. (MB#185)
 2006-10-23  Michael Dominic Kostrzewa  <michael.kostrzewa@nokia.com>
 
        * hildon-widgets/hildon-time-editor.c: Removing the extra focus grab,
index e8cba3e..2f5919c 100644 (file)
@@ -60,10 +60,10 @@ struct _HildonFindToolbarClass
 {
   GtkToolbarClass parent_class;
 
-  void         (*search)               (HildonFindToolbar *toolbar, gpointer data);
-  void                 (*close)                (HildonFindToolbar *toolbar, gpointer data);
-  void                 (*invalid_input)        (HildonFindToolbar *toolbar, gpointer data);
-  gboolean     (*history_append)       (HildonFindToolbar *tooblar, gpointer data);
+  void         (*search)               (HildonFindToolbar *toolbar);
+  void                 (*close)                (HildonFindToolbar *toolbar);
+  void                 (*invalid_input)        (HildonFindToolbar *toolbar);
+  gboolean     (*history_append)       (HildonFindToolbar *tooblar);
 };
 
 GType          hildon_find_toolbar_get_type            (void) G_GNUC_CONST;