diff options
author | Gediminas Paulauskas <menesis@delfi.lt> | 2002-08-02 22:01:01 +0000 |
---|---|---|
committer | Gediminas Paulauskas <menesis@src.gnome.org> | 2002-08-02 22:01:01 +0000 |
commit | 934f1cc499a65228072d5e90d56bc9730e4916db (patch) | |
tree | 3db253c03a3ffff67a637cf745be71c5e178f681 /gtk/gtkitemfactory.h | |
parent | 977119e88766cc67d1abb31acc3eee3cd55f5510 (diff) | |
download | gtk+-934f1cc499a65228072d5e90d56bc9730e4916db.tar.gz |
prototypes with no parameters must be defined as (void), not ()
2002-08-02 Gediminas Paulauskas <menesis@delfi.lt>
* gtkitemfactory.h: prototypes with no parameters must be
defined as (void), not ()
Diffstat (limited to 'gtk/gtkitemfactory.h')
-rw-r--r-- | gtk/gtkitemfactory.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/gtkitemfactory.h b/gtk/gtkitemfactory.h index d7f0178442..d6497f637e 100644 --- a/gtk/gtkitemfactory.h +++ b/gtk/gtkitemfactory.h @@ -43,7 +43,7 @@ typedef void (*GtkPrintFunc) (gpointer func_data, const gchar *str); typedef gchar * (*GtkTranslateFunc) (const gchar *path, gpointer func_data); -typedef void (*GtkItemFactoryCallback) (); +typedef void (*GtkItemFactoryCallback) (void); typedef void (*GtkItemFactoryCallback1) (gpointer callback_data, guint callback_action, GtkWidget *widget); |