summaryrefslogtreecommitdiff
path: root/gtk/main.h
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2004-06-17 16:35:26 +0000
committerUlf Lamping <ulf.lamping@web.de>2004-06-17 16:35:26 +0000
commit25e6749eb4c65abe0a2761beb3baf0c54050e047 (patch)
treef5502b917117b0ab16cad12e3d40031a29811b18 /gtk/main.h
parentd69ae05d29400d76da0657dd50c18742d5bd86c6 (diff)
downloadwireshark-25e6749eb4c65abe0a2761beb3baf0c54050e047.tar.gz
move font related stuff to new file font_utils.c/.h
do some font related renaming/code cleanup svn path=/trunk/; revision=11166
Diffstat (limited to 'gtk/main.h')
-rw-r--r--gtk/main.h23
1 files changed, 1 insertions, 22 deletions
diff --git a/gtk/main.h b/gtk/main.h
index 26ee1e48ef..f54509bf35 100644
--- a/gtk/main.h
+++ b/gtk/main.h
@@ -1,7 +1,7 @@
/* main.h
* Global defines, etc.
*
- * $Id: main.h,v 1.51 2004/06/04 17:16:57 ulfl Exp $
+ * $Id: main.h,v 1.52 2004/06/17 16:35:25 ulfl Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -250,25 +250,4 @@ extern void packets_bar_update(void);
extern void create_console(void);
#endif
-/** Return value from font_apply() */
-typedef enum {
- FA_SUCCESS, /**< function succeeded */
- FA_FONT_NOT_RESIZEABLE, /**< the choosen font isn't resizable */
- FA_FONT_NOT_AVAILABLE /**< the choosen font isn't available */
-} fa_ret_t;
-
-/** Applies a new font. Will also redraw the screen.
- *
- * @return if the new font could be set or not
- */
-extern fa_ret_t font_apply(void);
-#if GTK_MAJOR_VERSION < 2
-/* Try to convert a font name to it's bold version.
- *
- * @param the font to convert
- * @return the bold font
- */
-char *font_boldify(const char *font_name);
-#endif
-
#endif /* __MAIN_H__ */