aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/text_page.c
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/text_page.c
parentd69ae05d29400d76da0657dd50c18742d5bd86c6 (diff)
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/text_page.c')
-rw-r--r--gtk/text_page.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/gtk/text_page.c b/gtk/text_page.c
index 4b1be49c9c..cdc7b433c5 100644
--- a/gtk/text_page.c
+++ b/gtk/text_page.c
@@ -1,6 +1,6 @@
/* text_page.c
*
- * $Id: text_page.c,v 1.2 2004/06/07 19:49:37 guy Exp $
+ * $Id: text_page.c,v 1.3 2004/06/17 16:35:26 ulfl Exp $
*
* Ulf Lamping
*
@@ -34,11 +34,10 @@
#include "epan/filesystem.h"
#include "text_page.h"
-#include "gtkglobals.h"
#include "ui_util.h"
#include "compat_macros.h"
#include "simple_dialog.h"
-
+#include "font_utils.h"
#define TEXT_KEY "txt_key"
@@ -103,13 +102,13 @@ static void text_page_insert(GtkWidget *page, const char *buffer, int nchars)
GtkWidget *txt = OBJECT_GET_DATA(page, TEXT_KEY);
#if GTK_MAJOR_VERSION < 2
- gtk_text_insert(GTK_TEXT(txt), m_r_font, NULL, NULL, buffer, nchars);
+ gtk_text_insert(GTK_TEXT(txt), user_font_get_regular(), NULL, NULL, buffer, nchars);
#else
GtkTextBuffer *buf= gtk_text_view_get_buffer(GTK_TEXT_VIEW(txt));
GtkTextIter iter;
gtk_text_buffer_get_end_iter(buf, &iter);
- gtk_widget_modify_font(GTK_WIDGET(txt), m_r_font);
+ gtk_widget_modify_font(GTK_WIDGET(txt), user_font_get_regular());
if (!g_utf8_validate(buffer, -1, NULL))
printf("Invalid utf8 encoding: %s\n", buffer);
gtk_text_buffer_insert(buf, &iter, buffer, nchars);