diff options
| author | Alex Valavanis <valavanisalex@gmail.com> | 2012-04-11 23:00:15 +0000 |
|---|---|---|
| committer | Alex Valavanis <valavanisalex@gmail.com> | 2012-04-11 23:00:15 +0000 |
| commit | e90a304edc7c8c9f808733bbaedd579162928752 (patch) | |
| tree | 61729f7895604f1736564bc946dee21505e0a037 /src/ui | |
| parent | disable more deprecated stuff (diff) | |
| download | inkscape-e90a304edc7c8c9f808733bbaedd579162928752.tar.gz inkscape-e90a304edc7c8c9f808733bbaedd579162928752.zip | |
Clean up a few Gtkmm orientables
(bzr r11230)
Diffstat (limited to 'src/ui')
| -rw-r--r-- | src/ui/dialog/layers.h | 4 | ||||
| -rw-r--r-- | src/ui/dialog/livepatheffect-editor.h | 4 | ||||
| -rw-r--r-- | src/ui/dialog/spellcheck.h | 4 | ||||
| -rw-r--r-- | src/ui/widget/panel.h | 1 |
4 files changed, 13 insertions, 0 deletions
diff --git a/src/ui/dialog/layers.h b/src/ui/dialog/layers.h index 0a6f683dd..7959d0e6e 100644 --- a/src/ui/dialog/layers.h +++ b/src/ui/dialog/layers.h @@ -109,7 +109,11 @@ private: std::vector<Gtk::Widget*> _watchingNonBottom; Gtk::TreeView _tree; +#if WITH_GTKMM_3_0 + Gtk::ButtonBox _buttonsRow; +#else Gtk::HButtonBox _buttonsRow; +#endif Gtk::ScrolledWindow _scroller; Gtk::Menu _popupMenu; Inkscape::UI::Widget::SpinButton _spinBtn; diff --git a/src/ui/dialog/livepatheffect-editor.h b/src/ui/dialog/livepatheffect-editor.h index 11ab8ea89..beebbc698 100644 --- a/src/ui/dialog/livepatheffect-editor.h +++ b/src/ui/dialog/livepatheffect-editor.h @@ -102,7 +102,11 @@ private: void on_visibility_toggled( Glib::ustring const& str ); +#if WITH_GTKMM_3_0 + Gtk::ButtonBox toolbar_hbox; +#else Gtk::HButtonBox toolbar_hbox; +#endif Gtk::Button button_add; Gtk::Button button_remove; Gtk::Button button_up; diff --git a/src/ui/dialog/spellcheck.h b/src/ui/dialog/spellcheck.h index 74d5b76e6..8eb240097 100644 --- a/src/ui/dialog/spellcheck.h +++ b/src/ui/dialog/spellcheck.h @@ -221,7 +221,11 @@ private: * Dialogs widgets */ Gtk::Label banner_label; +#if WITH_GTKMM_3_0 + Gtk::ButtonBox banner_hbox; +#else Gtk::HButtonBox banner_hbox; +#endif Gtk::ScrolledWindow scrolled_window; Gtk::TreeView tree_view; Glib::RefPtr<Gtk::ListStore> model; diff --git a/src/ui/widget/panel.h b/src/ui/widget/panel.h index 7b471c2ce..2d92d65c9 100644 --- a/src/ui/widget/panel.h +++ b/src/ui/widget/panel.h @@ -20,6 +20,7 @@ #include <gtkmm/label.h> #include "enums.h" #include <vector> +#include <map> class SPDesktop; class SPDocument; |
