summaryrefslogtreecommitdiff
path: root/glib/glibmm/property.h
diff options
context:
space:
mode:
authorMurray Cumming <murrayc@murrayc.com>2016-03-31 11:14:58 +0200
committerMurray Cumming <murrayc@murrayc.com>2016-03-31 11:39:07 +0200
commitf61e1d0e8b6c48d940ba9d2690543af9192614c1 (patch)
tree98c568e0c942a102906fac936a2848e07b652a35 /glib/glibmm/property.h
parentfb9f840e18edaa54f6c51762b2b9aa67f6fcd85b (diff)
downloadglibmm-f61e1d0e8b6c48d940ba9d2690543af9192614c1.tar.gz
C++11: .h/.cc files: Replace typedefs with using.
Diffstat (limited to 'glib/glibmm/property.h')
-rw-r--r--glib/glibmm/property.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/glib/glibmm/property.h b/glib/glibmm/property.h
index 3242bbd7..10769896 100644
--- a/glib/glibmm/property.h
+++ b/glib/glibmm/property.h
@@ -171,8 +171,8 @@ template <class T>
class Property : public PropertyBase
{
public:
- typedef T PropertyType;
- typedef Glib::Value<T> ValueType;
+ using PropertyType = T;
+ using ValueType = Glib::Value<T>;
/** Constructs a property of the @a object with the specified @a name.
* For each instance of the object, the same property must be constructed with the same name.