diff options
author | Andreas Volz <andreas@er00923n.(none)> | 2010-08-04 00:01:23 +0200 |
---|---|---|
committer | Andreas Volz <andreas@er00923n.(none)> | 2010-08-04 00:01:23 +0200 |
commit | 4e6b136fe07ec539c439416ab58375e1a3edb195 (patch) | |
tree | ab203e4161841280780d35d3d53f6c15e7c9db45 /include | |
parent | 8a3fb381a1b53bef45b997c52a9cf115e9c40515 (diff) | |
download | dbus-c++-4e6b136fe07ec539c439416ab58375e1a3edb195.tar.gz |
Commit 1979ced0e0741caae3299c7f94733ba4d62a1e65 from Hubert Figuiere
Diffstat (limited to 'include')
-rw-r--r-- | include/dbus-c++/property.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dbus-c++/property.h b/include/dbus-c++/property.h index 2e909cb..847ae89 100644 --- a/include/dbus-c++/property.h +++ b/include/dbus-c++/property.h @@ -46,7 +46,7 @@ public: T operator() (void) const { - return (T)_data->value; + return _data->value.operator T(); } PropertyAdaptor &operator = (const T &t) |