aboutsummaryrefslogtreecommitdiffstats
path: root/ui/ws_ui_util.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2018-04-15 17:35:42 -0700
committerAnders Broman <a.broman58@gmail.com>2018-04-17 03:44:47 +0000
commit1d030928ef88d630299e8e3531d9935ff1dfd342 (patch)
tree1bf6347a407ad216237cb275bbf728934d8f9f48 /ui/ws_ui_util.h
parentc8cf127375a1f785fbbcd4d63070a51c306a2c58 (diff)
Remove some GTK+-only code.
Change-Id: Ic2498c7acd6a1a522be45094148402ee34a6b4d1 Reviewed-on: https://code.wireshark.org/review/26958 Reviewed-by: Gerald Combs <gerald@wireshark.org> Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ui/ws_ui_util.h')
-rw-r--r--ui/ws_ui_util.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/ui/ws_ui_util.h b/ui/ws_ui_util.h
index 03a1415d6c..34888d04ad 100644
--- a/ui/ws_ui_util.h
+++ b/ui/ws_ui_util.h
@@ -33,15 +33,12 @@ typedef struct window_geometry_s {
gboolean set_size; /**< set the width and height values */
gint width; /**< the windows width */
gint height; /**< the windows height */
-
- gboolean set_maximized; /**< set the maximized state (GTK2 only) */
- gboolean maximized; /**< the windows maximized state (GTK2 only) */
+ gboolean set_maximized; /**< set the maximized state */
+ gboolean maximized; /**< the windows maximized state */
} window_geometry_t;
/* update the main window */
extern void main_window_update(void);
-/* quit a nested main window. GTK+ only. */
-extern void main_window_nested_quit(void);
/* quit the main window */
extern void main_window_quit(void);
@@ -68,7 +65,6 @@ void packet_list_recolor_packets(void);
void packet_list_queue_draw(void);
void packet_list_select_first_row(void);
void packet_list_moveto_end(void);
-gboolean packet_list_check_end(void); /* GTK+ only */
gboolean packet_list_select_row_from_data(frame_data *fdata_needle);
void packet_list_resize_column(gint col);