summaryrefslogtreecommitdiffstats
path: root/src/document-undo.cpp
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2019-01-23 04:34:37 +0000
committerMarc Jeanmougin <marcjeanmougin@free.fr>2019-01-24 17:08:27 +0000
commit33a5ca9a670b38a9edcc034b026e622a642c6f7f (patch)
tree2f2b62bd38c877c3e0597ac893c18761d3570a0c /src/document-undo.cpp
parentDemangle: Switch to std::shared_ptr. (diff)
downloadinkscape-33a5ca9a670b38a9edcc034b026e622a642c6f7f.tar.gz
inkscape-33a5ca9a670b38a9edcc034b026e622a642c6f7f.zip
Timestamp: Switch to std::shared_ptr.
Diffstat (limited to 'src/document-undo.cpp')
-rw-r--r--src/document-undo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/document-undo.cpp b/src/document-undo.cpp
index 23650dc9c..8284dac55 100644
--- a/src/document-undo.cpp
+++ b/src/document-undo.cpp
@@ -109,7 +109,7 @@ public:
CommitEvent(SPDocument *doc, const gchar *key, const unsigned int type)
: InteractionEvent("commit")
{
- _addProperty("timestamp", timestamp().pointer());
+ _addProperty("timestamp", timestamp());
_addProperty("document", doc->serial());
Verb *verb = Verb::get(type);
if (verb) {