summaryrefslogtreecommitdiff
path: root/libopie2/opiecore/oapplication.h
Unidiff
Diffstat (limited to 'libopie2/opiecore/oapplication.h') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opiecore/oapplication.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libopie2/opiecore/oapplication.h b/libopie2/opiecore/oapplication.h
index 1bd34e2..6bc2b1c 100644
--- a/libopie2/opiecore/oapplication.h
+++ b/libopie2/opiecore/oapplication.h
@@ -61,13 +61,13 @@ class OApplication: public QPEApplication
61 * This is similar to the global @ref QApplication pointer qApp. It 61 * This is similar to the global @ref QApplication pointer qApp. It
62 * allows access to the single global OApplication object, since 62 * allows access to the single global OApplication object, since
63 * more than one cannot be created in the same application. It 63 * more than one cannot be created in the same application. It
64 * saves you the trouble of having to pass the pointer explicitly 64 * saves you the trouble of having to pass the pointer explicitly
65 * to every function that may require it. 65 * to every function that may require it.
66 */ 66 */
67 static const OApplication* oApplication() { return _instance; }; 67 static OApplication* oApplication() { return _instance; };
68 /** 68 /**
69 * Returns the application name as given during creation. 69 * Returns the application name as given during creation.
70 * 70 *
71 * @returns a reference to the application name 71 * @returns a reference to the application name
72 */ 72 */
73 const QCString& appName() const { return _appname; }; 73 const QCString& appName() const { return _appname; };