diff options
author | Martin Smith <msmith@trolltech.com> | 2009-09-21 13:29:38 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-09-21 13:30:53 (GMT) |
commit | ec76b17145c6449a5d90a1052635f30971e7fa4d (patch) | |
tree | 5815c51562bf4070b1710754292aff2ed34bc4da /src/corelib/io | |
parent | 00a8d21fff66cd2aec5ea0b6158a4f9923a6732f (diff) | |
download | Qt-ec76b17145c6449a5d90a1052635f30971e7fa4d.zip Qt-ec76b17145c6449a5d90a1052635f30971e7fa4d.tar.gz Qt-ec76b17145c6449a5d90a1052635f30971e7fa4d.tar.bz2 |
qdoc: Added \brief texts to all the since 4.6 functions.
Diffstat (limited to 'src/corelib/io')
-rw-r--r-- | src/corelib/io/qprocess.cpp | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/corelib/io/qprocess.cpp b/src/corelib/io/qprocess.cpp index 6ce38b2..a6a61dd 100644 --- a/src/corelib/io/qprocess.cpp +++ b/src/corelib/io/qprocess.cpp @@ -2204,11 +2204,13 @@ QStringList QProcess::systemEnvironment() /*! \since 4.6 - Returns the environment of the calling process as a QProcessEnvironment. + \brief The systemEnvironment function returns the environment of + the calling process. - This function does not cache the system environment. Therefore, it's - possible to obtain an updated version of the environment if low-level C - library functions like \tt setenv ot \tt putenv have been called. + It is returned as a QProcessEnvironment. This function does not + cache the system environment. Therefore, it's possible to obtain + an updated version of the environment if low-level C library + functions like \tt setenv ot \tt putenv have been called. However, note that repeated calls to this function will recreate the QProcessEnvironment object, which is a non-trivial operation. |