diff options
author | Geir Vattekar <geir.vattekar@nokia.com> | 2011-01-27 16:29:17 (GMT) |
---|---|---|
committer | Geir Vattekar <geir.vattekar@nokia.com> | 2011-01-27 16:29:17 (GMT) |
commit | bbd87cfe022fab15a5cac555ce155f9caa27ff06 (patch) | |
tree | 4509625d9bc167dabfb6df363eac852f1e22c6f4 /src/corelib/kernel | |
parent | a0177c4b9e4566f9d9edcab7b12ed77bfd823590 (diff) | |
download | Qt-bbd87cfe022fab15a5cac555ce155f9caa27ff06.zip Qt-bbd87cfe022fab15a5cac555ce155f9caa27ff06.tar.gz Qt-bbd87cfe022fab15a5cac555ce155f9caa27ff06.tar.bz2 |
Doc: Fixed typo in QCoreApplication docs
Task-number: QTBUG-14274
Diffstat (limited to 'src/corelib/kernel')
-rw-r--r-- | src/corelib/kernel/qcoreapplication.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/corelib/kernel/qcoreapplication.cpp b/src/corelib/kernel/qcoreapplication.cpp index 381be34..7d88b10 100644 --- a/src/corelib/kernel/qcoreapplication.cpp +++ b/src/corelib/kernel/qcoreapplication.cpp @@ -462,10 +462,10 @@ QString qAppName() operations can call processEvents() to keep the application responsive. - In general, we recommend that you create a QCoreApplication or - a QApplication object in your \c main() function as early as - possible. exit() will not return until the event loop exits; - e.g., when quit() is called. + In general, we recommend that you create a QCoreApplication or a + QApplication object in your \c main() function as early as + possible. exec() will not return until the event loop exits; e.g., + when quit() is called. Several static convenience functions are also provided. The QCoreApplication object is available from instance(). Events can |