aboutsummaryrefslogtreecommitdiffstats
path: root/simple_dialog.h
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-07-25 08:02:06 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-07-25 08:02:06 +0000
commitcd4c925d4a47cce3d5f32681efedd51509f3fb1b (patch)
tree017a1cd7746d565e747b5bcfd6f4f78b1e0e973f /simple_dialog.h
parent3f9022915278483d94581de603d7925e4cd631f3 (diff)
Fix the declarations for "simple_dialog()" and "vsimple_dialog()" used
for non-GCC 2.x compilers to match their definitions. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@11511 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'simple_dialog.h')
-rw-r--r--simple_dialog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/simple_dialog.h b/simple_dialog.h
index 6120220c19..d5debc33c3 100644
--- a/simple_dialog.h
+++ b/simple_dialog.h
@@ -101,7 +101,7 @@ extern gpointer vsimple_dialog(ESD_TYPE_E type, gint btn_mask,
* @param ... printf like parameters
* @return the newly created dialog
*/
-extern gpointer simple_dialog(gint type, gint btn_mask,
+extern gpointer simple_dialog(ESD_TYPE_E type, gint btn_mask,
const gchar *msg_format, ...);
/** Create and show a simple dialog using a va_list.
*
@@ -111,7 +111,7 @@ extern gpointer simple_dialog(gint type, gint btn_mask,
* @param ap parameters
* @return the newly created dialog
*/
-extern gpointer vsimple_dialog(gint type, gint btn_mask,
+extern gpointer vsimple_dialog(ESD_TYPE_E type, gint btn_mask,
const gchar *msg_format, va_list ap);
#endif