summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJon A. Cruz <jon@joncruz.org>2010-07-28 05:07:32 +0000
committerJon A. Cruz <jon@joncruz.org>2010-07-28 05:07:32 +0000
commit550565be413ccd1ec163c549bcca74e054e06b11 (patch)
treea803bafc896518c2a10899612a7ce3eca53deaa8 /src
parentFix for filters dialog by Krzysztof (diff)
downloadinkscape-550565be413ccd1ec163c549bcca74e054e06b11.tar.gz
inkscape-550565be413ccd1ec163c549bcca74e054e06b11.zip
Applied fix for sp_document_maybe_done() that was holding pointers to internal temp buffers.
(bzr r9606.1.29)
Diffstat (limited to 'src')
-rw-r--r--src/document-undo.cpp22
-rw-r--r--src/document.cpp5
-rw-r--r--src/document.h3
3 files changed, 18 insertions, 12 deletions
diff --git a/src/document-undo.cpp b/src/document-undo.cpp
index ae1c82e71..e63fe8a52 100644
--- a/src/document-undo.cpp
+++ b/src/document-undo.cpp
@@ -125,11 +125,10 @@ sp_document_done (SPDocument *doc, const unsigned int event_type, Glib::ustring
sp_document_maybe_done (doc, NULL, event_type, event_description);
}
-void
-sp_document_reset_key (Inkscape::Application */*inkscape*/, SPDesktop */*desktop*/, GtkObject *base)
+void sp_document_reset_key( Inkscape::Application * /*inkscape*/, SPDesktop * /*desktop*/, GtkObject *base )
{
- SPDocument *doc = (SPDocument *) base;
- doc->actionkey = NULL;
+ SPDocument *doc = reinterpret_cast<SPDocument *>(base);
+ doc->actionkey.clear();
}
namespace {
@@ -171,6 +170,9 @@ sp_document_maybe_done (SPDocument *doc, const gchar *key, const unsigned int ev
g_assert (doc != NULL);
g_assert (doc->priv != NULL);
g_assert (doc->priv->sensitive);
+ if ( key && !*key ) {
+ g_warning("Blank undo key specified.");
+ }
Inkscape::Debug::EventTracker<CommitEvent> tracker(doc, key, event_type);
@@ -188,7 +190,7 @@ sp_document_maybe_done (SPDocument *doc, const gchar *key, const unsigned int ev
return;
}
- if (key && doc->actionkey && !strcmp (key, doc->actionkey) && doc->priv->undo) {
+ if (key && !doc->actionkey.empty() && (doc->actionkey == key) && doc->priv->undo) {
((Inkscape::Event *)doc->priv->undo->data)->event =
sp_repr_coalesce_log (((Inkscape::Event *)doc->priv->undo->data)->event, log);
} else {
@@ -198,7 +200,11 @@ sp_document_maybe_done (SPDocument *doc, const gchar *key, const unsigned int ev
doc->priv->undoStackObservers.notifyUndoCommitEvent(event);
}
- doc->actionkey = key;
+ if ( key ) {
+ doc->actionkey = key;
+ } else {
+ doc->actionkey.clear();
+ }
doc->virgin = FALSE;
doc->setModifiedSinceSave();
@@ -257,7 +263,7 @@ sp_document_undo (SPDocument *doc)
doc->priv->sensitive = FALSE;
doc->priv->seeking = true;
- doc->actionkey = NULL;
+ doc->actionkey.clear();
finish_incomplete_transaction(*doc);
@@ -303,7 +309,7 @@ sp_document_redo (SPDocument *doc)
doc->priv->sensitive = FALSE;
doc->priv->seeking = true;
- doc->actionkey = NULL;
+ doc->actionkey.clear();
finish_incomplete_transaction(*doc);
diff --git a/src/document.cpp b/src/document.cpp
index eff6d6e81..3c9f7e5ed 100644
--- a/src/document.cpp
+++ b/src/document.cpp
@@ -92,7 +92,7 @@ SPDocument::SPDocument() :
base(0),
name(0),
priv(0), // reset in ctor
- actionkey(0),
+ actionkey(),
modified_id(0),
rerouting_handler_id(0),
profileManager(0), // deferred until after other initialization
@@ -211,7 +211,6 @@ SPDocument::~SPDocument() {
inkscape_unref();
keepalive = FALSE;
}
-
//delete this->_whiteboard_session_manager;
}
@@ -288,7 +287,7 @@ void SPDocument::collectOrphans() {
void SPDocument::reset_key (void */*dummy*/)
{
- actionkey = NULL;
+ actionkey.clear();
}
SPDocument *
diff --git a/src/document.h b/src/document.h
index e70582006..5810b5358 100644
--- a/src/document.h
+++ b/src/document.h
@@ -96,7 +96,8 @@ struct SPDocument : public Inkscape::GC::Managed<>,
SPDocumentPrivate *priv;
/// Last action key
- const gchar *actionkey;
+ Glib::ustring actionkey;
+
/// Handler ID
guint modified_id;