diff options
| author | Alexander Valavanis <valavanisalex@gmail.com> | 2018-12-22 16:44:40 +0000 |
|---|---|---|
| committer | Alexander Valavanis <valavanisalex@gmail.com> | 2018-12-22 16:44:40 +0000 |
| commit | 5020185f86d9fe14933b7bc6e4749fb7e559fbcd (patch) | |
| tree | dbadf1edbc59e115bba58bcfbc57a875a8ee0a37 /src/ui/widget/dash-selector.h | |
| parent | pinch zoom gesture (diff) | |
| download | inkscape-5020185f86d9fe14933b7bc6e4749fb7e559fbcd.tar.gz inkscape-5020185f86d9fe14933b7bc6e4749fb7e559fbcd.zip | |
Move DashSelector to Inkscape::UI::Widget namespace
Diffstat (limited to '')
| -rw-r--r-- | src/ui/widget/dash-selector.h (renamed from src/widgets/dash-selector.h) | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/src/widgets/dash-selector.h b/src/ui/widget/dash-selector.h index 485f8abed..449392acc 100644 --- a/src/widgets/dash-selector.h +++ b/src/ui/widget/dash-selector.h @@ -17,14 +17,17 @@ #include <sigc++/signal.h> +namespace Inkscape { +namespace UI { +namespace Widget { /** * Class that wraps a combobox and spinbutton for selecting dash patterns. */ -class SPDashSelector : public Gtk::HBox { +class DashSelector : public Gtk::HBox { public: - SPDashSelector(); - ~SPDashSelector() override; + DashSelector(); + ~DashSelector() override; /** * Get and set methods for dashes @@ -91,6 +94,10 @@ private: }; +} // namespace Widget +} // namespace UI +} // namespace Inkscape + #endif // SEEN_SP_DASH_SELECTOR_NEW_H /* |
