diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2013-03-12 12:20:04 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2013-03-12 12:20:04 +0000 |
| commit | aade0f7b5d272eb8a95b5f5ea6f8978ce24b8a72 (patch) | |
| tree | 4ccdbf9ccc5a0bce690d6f649dd3d1af3950579c /src/ui/dialog/fill-and-stroke.h | |
| parent | fix build warning (diff) | |
| download | inkscape-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.h | 12 |
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; |
