summaryrefslogtreecommitdiffstats
path: root/src/debug/simple-event.h
diff options
context:
space:
mode:
authorJabier Arraiza <jabier.arraiza@marker.es>2017-11-03 00:10:02 +0000
committerJabier Arraiza <jabier.arraiza@marker.es>2017-11-03 00:10:02 +0000
commitd2df0412f728dd5bb54537dfdfe7c35b34d40e0e (patch)
treee2703384779e83312c456399999997fcc289c5cf /src/debug/simple-event.h
parentMerge branch 'master' into powerpencil (diff)
parentchange assignment to equality (diff)
downloadinkscape-d2df0412f728dd5bb54537dfdfe7c35b34d40e0e.tar.gz
inkscape-d2df0412f728dd5bb54537dfdfe7c35b34d40e0e.zip
Merge branch 'master' into powerpencil
Diffstat (limited to 'src/debug/simple-event.h')
-rw-r--r--src/debug/simple-event.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/debug/simple-event.h b/src/debug/simple-event.h
index 03ce5d326..076b9b4b5 100644
--- a/src/debug/simple-event.h
+++ b/src/debug/simple-event.h
@@ -26,7 +26,7 @@ namespace Debug {
template <Event::Category C=Event::OTHER>
class SimpleEvent : public Event {
public:
- explicit SimpleEvent(Util::ptr_shared<char> name) : _name(name) {}
+ explicit SimpleEvent(Util::ptr_shared name) : _name(name) {}
explicit SimpleEvent(char const *name) : _name(Util::share_string(name)) {}
// default copy
@@ -34,7 +34,7 @@ public:
static Category category() { return C; }
- Util::ptr_shared<char> name() const { return _name; }
+ Util::ptr_shared name() const { return _name; }
unsigned propertyCount() const { return _properties.size(); }
PropertyPair property(unsigned property) const {
return _properties[property];
@@ -43,21 +43,21 @@ public:
void generateChildEvents() const {}
protected:
- void _addProperty(Util::ptr_shared<char> name,
- Util::ptr_shared<char> value)
+ void _addProperty(Util::ptr_shared name,
+ Util::ptr_shared value)
{
_properties.push_back(PropertyPair(name, value));
}
- void _addProperty(Util::ptr_shared<char> name, char const *value) {
+ void _addProperty(Util::ptr_shared name, char const *value) {
_addProperty(name, Util::share_string(value));
}
- void _addProperty(char const *name, Util::ptr_shared<char> value) {
+ void _addProperty(char const *name, Util::ptr_shared value) {
_addProperty(Util::share_string(name), value);
}
void _addProperty(char const *name, char const *value) {
_addProperty(Util::share_string(name), Util::share_string(value));
}
- void _addProperty(Util::ptr_shared<char> name, long value) {
+ void _addProperty(Util::ptr_shared name, long value) {
_addFormattedProperty(name, "%ld", value);
}
void _addProperty(char const *name, long value) {
@@ -65,10 +65,10 @@ protected:
}
private:
- Util::ptr_shared<char> _name;
+ Util::ptr_shared _name;
std::vector<PropertyPair, GC::Alloc<PropertyPair, GC::AUTO> > _properties;
- void _addFormattedProperty(Util::ptr_shared<char> name, char const *format, ...)
+ void _addFormattedProperty(Util::ptr_shared name, char const *format, ...)
{
va_list args;
va_start(args, format);