diff options
Diffstat (limited to 'src/manager-lib/notificationmanager.cpp')
-rw-r--r-- | src/manager-lib/notificationmanager.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/manager-lib/notificationmanager.cpp b/src/manager-lib/notificationmanager.cpp index 44a3f056..7a276d8f 100644 --- a/src/manager-lib/notificationmanager.cpp +++ b/src/manager-lib/notificationmanager.cpp @@ -173,6 +173,8 @@ */ +AM_BEGIN_NAMESPACE + namespace { enum Roles { @@ -202,6 +204,7 @@ enum Roles Extended // QVariantMap }; +} struct NotificationData { @@ -234,7 +237,6 @@ enum CloseReason CloseNotificationCalled = 3 }; -} class NotificationManagerPrivate { @@ -636,3 +638,5 @@ void NotificationManagerPrivate::closeNotification(uint id, CloseReason reason) emit q->NotificationClosed(id, int(reason)); } } + +AM_END_NAMESPACE |