summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKrzysztof Kosi??ski <tweenk.pl@gmail.com>2010-12-12 13:32:01 +0000
committerKrzysztof KosiƄski <tweenk.pl@gmail.com>2010-12-12 13:32:01 +0000
commit07ca39a6ced532a3e025d5753fbff8fd6a8c2171 (patch)
treebeac29e86a8e7cff3aecec7794f305e3a617b8c8 /src
parentGSoC C++-ificiation merge and cleanup. (diff)
downloadinkscape-07ca39a6ced532a3e025d5753fbff8fd6a8c2171.tar.gz
inkscape-07ca39a6ced532a3e025d5753fbff8fd6a8c2171.zip
Fix build failure
(bzr r9947)
Diffstat (limited to 'src')
-rw-r--r--src/dialogs/spellcheck.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dialogs/spellcheck.cpp b/src/dialogs/spellcheck.cpp
index 12105c8c0..22d440b5f 100644
--- a/src/dialogs/spellcheck.cpp
+++ b/src/dialogs/spellcheck.cpp
@@ -39,6 +39,7 @@
#include <xml/repr.h>
#include "display/canvas-bpath.h"
#include "display/curve.h"
+#include "document-undo.h"
#ifdef HAVE_ASPELL
#include <aspell.h>
@@ -780,7 +781,7 @@ sp_spellcheck_accept (GObject *, GObject *dlg)
// find the end of the word anew
_end_w = _begin_w;
_end_w.nextEndOfWord();
- SPDocumentUndo::done(sp_desktop_document(_desktop), SP_VERB_CONTEXT_TEXT,
+ Inkscape::DocumentUndo::done(sp_desktop_document(_desktop), SP_VERB_CONTEXT_TEXT,
_("Fix spelling"));
}
}