aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAki Koskinen <aki.koskinen@nokia.com>2010-08-26 12:58:05 +0300
committerAki Koskinen <aki.koskinen@nokia.com>2010-08-26 13:02:50 +0300
commitbb9611fff49d519be6832b53f68f999711241fa8 (patch)
tree9efdc8b19d03d7efa2c03c43dda28e858d1fea72
parent85961ea057d3150764f65ae1e8be200fdbb2969c (diff)
Changes: updated MNotification documentation
RevBy: TrustMe Details: require QCoreApplication instead of MApplication
-rw-r--r--debian/changelog1
-rw-r--r--doc/src/news.dox6
-rw-r--r--src/corelib/notification/mnotification.h4
-rw-r--r--src/corelib/notification/mnotificationgroup.h6
4 files changed, 12 insertions, 5 deletions
diff --git a/debian/changelog b/debian/changelog
index ce676d5c..cd5217a6 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,6 +1,7 @@
libmeegotouch (0.20.36~1) unstable; urgency=low
* [unreleased]
+ * Implemented: SWP#DUI-3585 Notification system support for daemon processes
-- Jorgen Scheibengruber <jorgen.scheibengruber@nokia.com> Wed, 25 Aug 2010 11:51:23 +0300
diff --git a/doc/src/news.dox b/doc/src/news.dox
index 26a78367..7d25f47e 100644
--- a/doc/src/news.dox
+++ b/doc/src/news.dox
@@ -1,5 +1,11 @@
/*! \page news What's New in MeeGo Touch
+\section v02036 0.20.36
+
+\subsection New
+
+- Only QCoreApplication is required for using MNotification. Previously MApplication was required but that's not actually needed.
+
\section v02034 0.20.34
\subsection New
diff --git a/src/corelib/notification/mnotification.h b/src/corelib/notification/mnotification.h
index 7f9704bb..29ba0271 100644
--- a/src/corelib/notification/mnotification.h
+++ b/src/corelib/notification/mnotification.h
@@ -50,7 +50,7 @@ class QString;
A notification is not created or updated until the publish() function is called.
- A list of notifications already created can be requested. An MApplication must be created before
+ A list of notifications already created can be requested. A QCoreApplication must be created before
doing the request.
\sa \ref notifications
@@ -86,7 +86,7 @@ class QString;
of such notifications need to be set before publishing changes to the notification. Otherwise the
properties of the notification will be lost.
- \note A MApplication instance must be created before creating any persistent notifications.
+ \note A QCoreApplication instance must be created before creating any persistent notifications.
*/
class M_EXPORT MNotification : public QObject
diff --git a/src/corelib/notification/mnotificationgroup.h b/src/corelib/notification/mnotificationgroup.h
index ecffe0a0..e05c5d9e 100644
--- a/src/corelib/notification/mnotificationgroup.h
+++ b/src/corelib/notification/mnotificationgroup.h
@@ -31,7 +31,7 @@ class MNotificationGroupPrivate;
\brief A class that represents a notification group.
\ingroup widgets
-
+
\section MNotificationOverview Overview
A class that represents a notification group. Notification groups can be
used to bundle similar notifications into one so that the individual
@@ -40,9 +40,9 @@ class MNotificationGroupPrivate;
A notification group is not created or updated until the publish() function
is called. A notification group must be published before notifications are
placed into it.
-
+
A list of notification groups already created can be requested.
- An MApplication must be created before doing the request.
+ A QCoreApplication must be created before doing the request.
\sa \ref MNotification
\sa \ref notifications