summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTomasz Olszak <olszak.tomasz@gmail.com>2013-07-01 22:24:55 +0000
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-07-12 14:54:09 +0200
commit4f71a272b57c5e63b9fb166cbc352c305f3c7ef7 (patch)
tree9a2a4b550d94ebfdf34cb4234a16f5be0f6e6791 /src
parent9f3f4551511b63a3f230a8d71718d0d5fa352a28 (diff)
QCoreApplication: Removed out-of-date docs (argv() method).
QCoreApplication::argv() method was obsolete in Qt4.8 and removed in Qt5.0. Change-Id: I217402f774f5509c8ca317a35c831ffa5ac2af06 Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src')
-rw-r--r--src/corelib/kernel/qcoreapplication.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/corelib/kernel/qcoreapplication.cpp b/src/corelib/kernel/qcoreapplication.cpp
index c3a05551b8..efb1289a5c 100644
--- a/src/corelib/kernel/qcoreapplication.cpp
+++ b/src/corelib/kernel/qcoreapplication.cpp
@@ -394,7 +394,7 @@ QCoreApplicationPrivate::QCoreApplicationPrivate(int &aargc, char **aargv, uint
static const char *const empty = "";
if (argc == 0 || argv == 0) {
argc = 0;
- argv = (char **)&empty; // ouch! careful with QCoreApplication::argv()!
+ argv = (char **)&empty;
}
#ifdef Q_OS_WIN
qCopy(argv, argv + argc, origArgv);
@@ -589,10 +589,6 @@ void QCoreApplicationPrivate::initLocale()
Note that some arguments supplied by the user may have been
processed and removed by QCoreApplication.
- In cases where command line arguments need to be obtained using the
- argv() function, you must convert them from the local string encoding
- using QString::fromLocal8Bit().
-
\section1 Locale Settings
On Unix/Linux Qt is configured to use the system locale settings by