diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-06-03 17:31:18 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-06-03 17:31:18 +0300 |
commit | bcd76117e26e72ed74f9b8c2856a7128e1c27441 (patch) | |
tree | 0275b1652c31ca4ac3d013f4f11a2de0cd5b587e /src/resources/notificationinfo.h | |
parent | 0bdaa773a4ee5a678c400a1b097190e3856ee5a6 (diff) | |
download | plus-bcd76117e26e72ed74f9b8c2856a7128e1c27441.tar.gz plus-bcd76117e26e72ed74f9b8c2856a7128e1c27441.tar.bz2 plus-bcd76117e26e72ed74f9b8c2856a7128e1c27441.tar.xz plus-bcd76117e26e72ed74f9b8c2856a7128e1c27441.zip |
Convert NotifyFlags enum into strong typed enum.
Diffstat (limited to 'src/resources/notificationinfo.h')
-rw-r--r-- | src/resources/notificationinfo.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/resources/notificationinfo.h b/src/resources/notificationinfo.h index 4ea05b1ca..b7bb8b8a4 100644 --- a/src/resources/notificationinfo.h +++ b/src/resources/notificationinfo.h @@ -30,7 +30,7 @@ struct NotificationInfo final #ifdef ADVGCC NotificationInfo(const char *const sound0, const char *const text0, - const NotifyFlags::Type flags0) : + const NotifyFlagsT flags0) : sound(sound0), text(text0), flags(flags0) @@ -41,7 +41,7 @@ struct NotificationInfo final const char *sound; const char *text; - const NotifyFlags::Type flags; + const NotifyFlagsT flags; }; #endif // RESOURCES_NOTIFICATIONINFO_H |