summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-10-04 17:39:12 +0200
committerMichael Mann <mmann78@netscape.net>2014-10-06 21:15:25 +0000
commitcf201b03ac3eb83e7ca9d6681033bb185462c68a (patch)
tree626f4c8816091e4c6b576564f6c83a3265424063
parent798eb9705341bdf330e8e238b6f0f2fb278a64c8 (diff)
downloadwireshark-cf201b03ac3eb83e7ca9d6681033bb185462c68a.tar.gz
UI (simple_dialog): fix warning: redundant redeclaration of .. [-Wredundant-decls]
simple_dialog.h:78:13: warning: redundant redeclaration of ‘simple_message_box’ [-Wredundant-decls] simple_dialog.h:85:13: warning: redundant redeclaration of ‘vsimple_error_message_box’ [-Wredundant-decls] simple_dialog.h:90:13: warning: redundant redeclaration of ‘simple_error_message_box’ [-Wredundant-decls] Change-Id: I8f6363fc8ec46ba24895e5236368544f64354e42 Reviewed-on: https://code.wireshark.org/review/4460 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
-rw-r--r--ui/gtk/simple_dialog.h18
1 files changed, 0 insertions, 18 deletions
diff --git a/ui/gtk/simple_dialog.h b/ui/gtk/simple_dialog.h
index f805e959fe..e33fdd7e2c 100644
--- a/ui/gtk/simple_dialog.h
+++ b/ui/gtk/simple_dialog.h
@@ -71,24 +71,6 @@ extern gboolean simple_dialog_check_get(gpointer dialog);
*/
extern void display_queued_messages(void);
-/*
- * Alert box, with optional "don't show this message again" variable
- * and checkbox, and optional secondary text.
- */
-extern void simple_message_box(ESD_TYPE_E type, gboolean *notagain,
- const char *secondary_msg,
- const char *msg_format, ...) G_GNUC_PRINTF(4, 5);
-
-/*
- * Error alert box, taking a format and a va_list argument.
- */
-extern void vsimple_error_message_box(const char *msg_format, va_list ap);
-
-/*
- * Error alert box, taking a format and a list of arguments.
- */
-extern void simple_error_message_box(const char *msg_format, ...);
-
#ifdef __cplusplus
}
#endif /* __cplusplus */