diff options
| author | MenTaLguY <mental@rydia.net> | 2007-05-10 01:18:32 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2007-05-10 01:18:32 +0000 |
| commit | 66b7ccfa202cb0a54c2de98eddf156f6d7e5837d (patch) | |
| tree | 0445465291b7e47b576dca7d57412ff1c32f2946 | |
| parent | Explicit child events and formatted properties. (diff) | |
| download | inkscape-66b7ccfa202cb0a54c2de98eddf156f6d7e5837d.tar.gz inkscape-66b7ccfa202cb0a54c2de98eddf156f6d7e5837d.zip | |
fix formatting
(bzr r2992)
| -rw-r--r-- | src/debug/simple-event.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/debug/simple-event.h b/src/debug/simple-event.h index 115c1e2f4..4d5264d73 100644 --- a/src/debug/simple-event.h +++ b/src/debug/simple-event.h @@ -56,10 +56,10 @@ protected: void _addProperty(char const *name, char const *value) { _addProperty(Util::share_string(name), Util::share_string(value)); } - void _addProperty(Util::ptr_shared<char> name, unsigned long value) { - _addFormattedProperty(name, "%ul", value); + void _addProperty(Util::ptr_shared<char> name, long value) { + _addFormattedProperty(name, "%l", value); } - void _addProperty(char const *name, unsigned long value) { + void _addProperty(char const *name, long value) { _addProperty(Util::share_string(name), value); } |
