summaryrefslogtreecommitdiffstats
path: root/src/document.cpp
diff options
context:
space:
mode:
authorLiam P. White <inkscapebrony@gmail.com>2014-06-26 17:49:17 +0000
committerLiam P. White <inkscapebrony@gmail.com>2014-06-26 17:49:17 +0000
commit6dfb9b4eade77ac55d11f05669c2192352b9b8fa (patch)
treeb5925ceaf9684f21ff9cfb9b8e639be9e0937957 /src/document.cpp
parentUpdate to exp. r13409 (diff)
downloadinkscape-6dfb9b4eade77ac55d11f05669c2192352b9b8fa.tar.gz
inkscape-6dfb9b4eade77ac55d11f05669c2192352b9b8fa.zip
4. further refactor Application class; create proper singleton, encapsulate members, simplify signals
(bzr r13341.5.6)
Diffstat (limited to '')
-rw-r--r--src/document.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/document.cpp b/src/document.cpp
index 26e59e610..000888772 100644
--- a/src/document.cpp
+++ b/src/document.cpp
@@ -463,15 +463,13 @@ SPDocument *SPDocument::createDoc(Inkscape::XML::Document *rdoc,
// reset undo key when selection changes, so that same-key actions on different objects are not coalesced
document->priv->selChangeConnection = INKSCAPE->signal_selection_changed.connect(
- sigc::hide( // hide unused first and second args
sigc::hide(sigc::bind(
sigc::ptr_fun(&DocumentUndo::resetKey), document)
- )));
+ ));
document->priv->desktopActivatedConnection = INKSCAPE->signal_activate_desktop.connect(
- sigc::hide( // hide unused first and second args
sigc::hide(sigc::bind(
sigc::ptr_fun(&DocumentUndo::resetKey), document)
- )));
+ ));
document->oldSignalsConnected = true;
return document;