diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-04-30 19:54:08 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-04-30 19:54:08 +0300 |
commit | ef7e7319305f040a47c483b71f2e78da7a1d6149 (patch) | |
tree | 14ac10427d7c94288fcb198db5277455754589ae /src/notifications.h | |
parent | 12389c8441c748996962412201af9e21d66f9e55 (diff) | |
download | plus-ef7e7319305f040a47c483b71f2e78da7a1d6149.tar.gz plus-ef7e7319305f040a47c483b71f2e78da7a1d6149.tar.bz2 plus-ef7e7319305f040a47c483b71f2e78da7a1d6149.tar.xz plus-ef7e7319305f040a47c483b71f2e78da7a1d6149.zip |
Fix code style in other files.
Diffstat (limited to 'src/notifications.h')
-rw-r--r-- | src/notifications.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/notifications.h b/src/notifications.h index 18a689287..0c08c0430 100644 --- a/src/notifications.h +++ b/src/notifications.h @@ -41,6 +41,16 @@ namespace NotifyManager struct NotificationInfo final { + NotificationInfo(const char *const sound0, + const char *const text0, + const NotifyFlags flags0) : + sound(sound0), + text(text0), + flags(flags0) + { } + + A_DELETE_COPY(NotificationInfo) + const char *sound; const char *text; const NotifyFlags flags; |