summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/fill-and-stroke.h
diff options
context:
space:
mode:
authorAlex Valavanis <valavanisalex@gmail.com>2013-03-12 12:20:04 +0000
committerAlex Valavanis <valavanisalex@gmail.com>2013-03-12 12:20:04 +0000
commitaade0f7b5d272eb8a95b5f5ea6f8978ce24b8a72 (patch)
tree4ccdbf9ccc5a0bce690d6f649dd3d1af3950579c /src/ui/dialog/fill-and-stroke.h
parentfix build warning (diff)
downloadinkscape-aade0f7b5d272eb8a95b5f5ea6f8978ce24b8a72.tar.gz
inkscape-aade0f7b5d272eb8a95b5f5ea6f8978ce24b8a72.zip
Further migration to Gtk::Grid
(bzr r12196)
Diffstat (limited to 'src/ui/dialog/fill-and-stroke.h')
-rw-r--r--src/ui/dialog/fill-and-stroke.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/ui/dialog/fill-and-stroke.h b/src/ui/dialog/fill-and-stroke.h
index 255cea89a..340cb860f 100644
--- a/src/ui/dialog/fill-and-stroke.h
+++ b/src/ui/dialog/fill-and-stroke.h
@@ -16,7 +16,6 @@
#define INKSCAPE_UI_DIALOG_FILL_AND_STROKE_H
#include "ui/widget/panel.h"
-#include "ui/widget/notebook-page.h"
#include "ui/widget/object-composite-settings.h"
#include "ui/dialog/desktop-tracker.h"
@@ -25,6 +24,11 @@
namespace Inkscape {
namespace UI {
+
+namespace Widget {
+class NotebookPage;
+}
+
namespace Dialog {
class FillAndStroke : public UI::Widget::Panel {
@@ -47,9 +51,9 @@ public:
protected:
Gtk::Notebook _notebook;
- UI::Widget::NotebookPage _page_fill;
- UI::Widget::NotebookPage _page_stroke_paint;
- UI::Widget::NotebookPage _page_stroke_style;
+ UI::Widget::NotebookPage *_page_fill;
+ UI::Widget::NotebookPage *_page_stroke_paint;
+ UI::Widget::NotebookPage *_page_stroke_style;
UI::Widget::StyleSubject::Selection _subject;
UI::Widget::ObjectCompositeSettings _composite_settings;