aboutsummaryrefslogtreecommitdiff
path: root/src/stylesheet_editor.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.me.uk>2018-04-23 23:19:50 +0200
committerThomas White <taw@bitwiz.me.uk>2018-04-23 23:19:50 +0200
commita6af31fbaba86661985fd8767026ea3b1c5ae191 (patch)
treef0fda56d7d564d87b6a1cf26d9d846e549e02540 /src/stylesheet_editor.h
parent24589a64a3dfc28469ab8744eb9fcab72ed4ae94 (diff)
Initialise StylesheetEditor default font and fgcol
Diffstat (limited to 'src/stylesheet_editor.h')
-rw-r--r--src/stylesheet_editor.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/stylesheet_editor.h b/src/stylesheet_editor.h
index ab2d65c..7883132 100644
--- a/src/stylesheet_editor.h
+++ b/src/stylesheet_editor.h
@@ -51,12 +51,16 @@
COLLOQUIUM_TYPE_STYLESHEET_EDITOR, \
StylesheetEditorClass))
-struct stylesheet_editor_private;
+
+typedef struct _sspriv StylesheetEditorPrivate;
struct _stylesheeteditor
{
GtkDialog parent_instance;
- struct stylesheet_editor_private *priv;
+ GtkWidget *default_style_font;
+ GtkWidget *default_style_fgcol;
+ GtkWidget *default_style_ss;
+ StylesheetEditorPrivate *priv;
};