summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog/dialog-manager.cpp
diff options
context:
space:
mode:
authorDenis Declara <declara91@gmail.com>2012-03-31 13:20:19 +0000
committerDenis Declara <declara91@gmail.com>2012-03-31 13:20:19 +0000
commitdc6fcf4ec96d4f4345ad86b1940d4b31d6771a0f (patch)
tree34880731d244e32320a6b398ca1e1ccb1efca067 /src/ui/dialog/dialog-manager.cpp
parentRemoved some commented code, which i replaced, and is therefore no longer used. (diff)
downloadinkscape-dc6fcf4ec96d4f4345ad86b1940d4b31d6771a0f.tar.gz
inkscape-dc6fcf4ec96d4f4345ad86b1940d4b31d6771a0f.zip
Brought old code, "Rows and Columns" in it's own class. Added a separate class for the panel. Still some cleanup to do.
(bzr r11073.1.8)
Diffstat (limited to 'src/ui/dialog/dialog-manager.cpp')
-rw-r--r--src/ui/dialog/dialog-manager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/dialog/dialog-manager.cpp b/src/ui/dialog/dialog-manager.cpp
index 60011ca9d..746cfc1b4 100644
--- a/src/ui/dialog/dialog-manager.cpp
+++ b/src/ui/dialog/dialog-manager.cpp
@@ -121,7 +121,7 @@ DialogManager::DialogManager() {
registerFactory("SvgFontsDialog", &create<SvgFontsDialog, FloatingBehavior>);
#endif
registerFactory("Swatches", &create<SwatchesPanel, FloatingBehavior>);
- registerFactory("TileDialog", &create<TileDialog, FloatingBehavior>);
+ registerFactory("TileDialog", &create<ArrangeDialog, FloatingBehavior>);
registerFactory("Trace", &create<TraceDialog, FloatingBehavior>);
registerFactory("Transformation", &create<Transformation, FloatingBehavior>);
registerFactory("UndoHistory", &create<UndoHistory, FloatingBehavior>);
@@ -156,7 +156,7 @@ DialogManager::DialogManager() {
registerFactory("SvgFontsDialog", &create<SvgFontsDialog, DockBehavior>);
#endif
registerFactory("Swatches", &create<SwatchesPanel, DockBehavior>);
- registerFactory("TileDialog", &create<TileDialog, DockBehavior>);
+ registerFactory("TileDialog", &create<ArrangeDialog, DockBehavior>);
registerFactory("Trace", &create<TraceDialog, DockBehavior>);
registerFactory("Transformation", &create<Transformation, DockBehavior>);
registerFactory("UndoHistory", &create<UndoHistory, DockBehavior>);