From: Vadim Zeitlin Date: Fri, 21 Sep 2007 11:25:11 +0000 (+0000) Subject: functions not taking argument must be declared as (void) in C, not () X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d494512913278c712efb65478b4ea91dc5d2438f functions not taking argument must be declared as (void) in C, not () git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48859 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/include/wx/gtk/assertdlg_gtk.h b/include/wx/gtk/assertdlg_gtk.h index ae3250a1c1..ffd8b7885c 100644 --- a/include/wx/gtk/assertdlg_gtk.h +++ b/include/wx/gtk/assertdlg_gtk.h @@ -59,8 +59,8 @@ typedef enum -GType gtk_assert_dialog_get_type(); -GtkWidget *gtk_assert_dialog_new(); +GType gtk_assert_dialog_get_type(void); +GtkWidget *gtk_assert_dialog_new(void); /* get the assert message */ gchar *gtk_assert_dialog_get_message(GtkAssertDialog *assertdlg);