summaryrefslogtreecommitdiff
path: root/glib/glibmm/signalproxy.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/signalproxy.h
parentfb9f840e18edaa54f6c51762b2b9aa67f6fcd85b (diff)
downloadglibmm-f61e1d0e8b6c48d940ba9d2690543af9192614c1.tar.gz
C++11: .h/.cc files: Replace typedefs with using.
Diffstat (limited to 'glib/glibmm/signalproxy.h')
-rw-r--r--glib/glibmm/signalproxy.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/glib/glibmm/signalproxy.h b/glib/glibmm/signalproxy.h
index 7237be02..458e6b1d 100644
--- a/glib/glibmm/signalproxy.h
+++ b/glib/glibmm/signalproxy.h
@@ -153,8 +153,8 @@ template <class R, class... T>
class SignalProxy : public SignalProxyNormal
{
public:
- typedef sigc::slot<R, T...> SlotType;
- typedef sigc::slot<void, T...> VoidSlotType;
+ using SlotType = sigc::slot<R, T...>;
+ using VoidSlotType = sigc::slot<void, T...>;
SignalProxy(ObjectBase* obj, const SignalProxyInfo* info) : SignalProxyNormal(obj, info) {}
@@ -303,8 +303,8 @@ template <class R, class... T>
class SignalProxyDetailedAnyType : public SignalProxyDetailed
{
public:
- typedef sigc::slot<R, T...> SlotType;
- typedef sigc::slot<void, T...> VoidSlotType;
+ using SlotType = sigc::slot<R, T...>;
+ using VoidSlotType = sigc::slot<void, T...>;
SignalProxyDetailedAnyType(
ObjectBase* obj, const SignalProxyInfo* info, const Glib::ustring& detail_name)