diff options
| author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2019-01-23 04:34:37 +0000 |
|---|---|---|
| committer | Marc Jeanmougin <marcjeanmougin@free.fr> | 2019-01-24 17:08:27 +0000 |
| commit | 33a5ca9a670b38a9edcc034b026e622a642c6f7f (patch) | |
| tree | 2f2b62bd38c877c3e0597ac893c18761d3570a0c /src/helper/action.cpp | |
| parent | Demangle: Switch to std::shared_ptr. (diff) | |
| download | inkscape-33a5ca9a670b38a9edcc034b026e622a642c6f7f.tar.gz inkscape-33a5ca9a670b38a9edcc034b026e622a642c6f7f.zip | |
Timestamp: Switch to std::shared_ptr.
Diffstat (limited to 'src/helper/action.cpp')
| -rw-r--r-- | src/helper/action.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helper/action.cpp b/src/helper/action.cpp index 2859f6273..2bad8f8ea 100644 --- a/src/helper/action.cpp +++ b/src/helper/action.cpp @@ -114,7 +114,7 @@ public: ActionEvent(SPAction const *action) : ActionEventBase("action") { - _addProperty("timestamp", timestamp().pointer()); + _addProperty("timestamp", timestamp()); SPDocument *document = action->context.getDocument(); if (document) { _addProperty("document", document->serial()); |
