diff options
| author | gustav_b <gustav_b@users.sourceforge.net> | 2007-08-29 21:27:07 +0000 |
|---|---|---|
| committer | gustav_b <gustav_b@users.sourceforge.net> | 2007-08-29 21:27:07 +0000 |
| commit | 731f2b5adbb6f9e9fc853a6506c695fd2fcec320 (patch) | |
| tree | 6e7775c500ffc41d1376d7496c9334840b0f065f /src/ui/view/edit-widget.cpp | |
| parent | Don't snap node handles to the parent path, plus a small string change (diff) | |
| download | inkscape-731f2b5adbb6f9e9fc853a6506c695fd2fcec320.tar.gz inkscape-731f2b5adbb6f9e9fc853a6506c695fd2fcec320.zip | |
Dockable dialogs patch applied
(https://sourceforge.net/tracker/?func=detail&atid=604308&aid=1688508&group_id=93438)
(bzr r3613)
Diffstat (limited to 'src/ui/view/edit-widget.cpp')
| -rw-r--r-- | src/ui/view/edit-widget.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/ui/view/edit-widget.cpp b/src/ui/view/edit-widget.cpp index b87250e47..066d4d0ba 100644 --- a/src/ui/view/edit-widget.cpp +++ b/src/ui/view/edit-widget.cpp @@ -65,6 +65,8 @@ #include "interface.h" #include "extension/db.h" +#include "ui/dialog/dialog-manager.h" + using namespace Inkscape::UI; using namespace Inkscape::UI::Widget; @@ -152,7 +154,6 @@ EditWidget::initLayout() _viewport_table.attach(_svg_canvas.widget(), 1, 2, 1, 2, Gtk::FILL|Gtk::EXPAND, Gtk::FILL|Gtk::EXPAND); _svg_canvas.widget().show_all(); - // The statusbar comes last and appears at the bottom of _main_window_table initStatusbar(); @@ -1532,6 +1533,12 @@ EditWidget::warnDialog (gchar* msg) } +Inkscape::UI::Widget::Dock* +EditWidget::getDock () +{ + return &_dock; +} + void EditWidget::_namedview_modified (SPObject *obj, guint flags) { SPNamedView *nv = static_cast<SPNamedView *>(obj); if (flags & SP_OBJECT_MODIFIED_FLAG) { |
