summaryrefslogtreecommitdiff
path: root/ui/gtk/gui_utils.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-04-14 20:25:25 +0200
committerAnders Broman <a.broman58@gmail.com>2014-04-14 20:25:41 +0000
commitb00a622bcd12157ae776bf4cfbed6b7d67887a3d (patch)
treec1bd505068bbb287ef9458b0a1f040753fe73616 /ui/gtk/gui_utils.h
parentd029cf158bce42dac0d6d0d270ffed84a19850c4 (diff)
downloadwireshark-b00a622bcd12157ae776bf4cfbed6b7d67887a3d.tar.gz
Fix warning when generate documentation (doxygen)
ui/gtk/gui_utils.h:277: Warning: argument 'parent' of command @param is not found in the argument list of pixbuf_to_widget(const guint8 *pb_data) ui/gtk/gui_utils.h:277: Warning: argument 'xpm' of command @param is not found in the argument list of pixbuf_to_widget(const guint8 *pb_data) Change-Id: I9182a6f8c85b69bd8b0bab7e03af441dee31fc1d Reviewed-on: https://code.wireshark.org/review/1136 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ui/gtk/gui_utils.h')
-rw-r--r--ui/gtk/gui_utils.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/gtk/gui_utils.h b/ui/gtk/gui_utils.h
index 21b76da178..e9174239cd 100644
--- a/ui/gtk/gui_utils.h
+++ b/ui/gtk/gui_utils.h
@@ -265,6 +265,7 @@ extern void set_tree_styles_all(void);
*/
extern GtkWidget *xpm_to_widget(const char ** xpm);
+#if 0
/** Convert an xpm picture into a GtkWidget showing it.
* Beware: the given parent window must already be visible!
*
@@ -272,7 +273,8 @@ extern GtkWidget *xpm_to_widget(const char ** xpm);
* @param xpm the character array containing the picture
* @return a newly created GtkWidget showing the picture
*/
-/*extern GtkWidget *xpm_to_widget_from_parent(GtkWidget *parent, const char ** xpm);*/
+extern GtkWidget *xpm_to_widget_from_parent(GtkWidget *parent, const char ** xpm);
+#endif
/** Convert an pixbuf data to a GtkWidget
*