Changeset 690 for trunk/src/corelib/io


Ignore:
Timestamp:
Mar 16, 2010, 12:21:22 AM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

docs: Fixed warnings and added some missing documentation for OS/2 specific classes.

Location:
trunk/src/corelib/io
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/corelib/io/qfsfileengine.cpp

    r651 r690  
    912912  engine.
    913913
    914   For Windows, returns the canonicalized form of the current path used
    915   by the file engine for the drive specified by \a fileName.  On
    916   Windows, each drive has its own current directory, so a different
    917   path is returned for file names that include different drive names
    918   (e.g. A: or C:).
     914  For Windows and OS/2, returns the canonicalized form of the current path used
     915  by the file engine for the drive specified by \a fileName.  On Windows and on
     916  OS/2, each drive has its own current directory, so a different path is
     917  returned for file names that include different drive names (e.g. A: or C:).
    919918
    920919  \sa setCurrentPath()
  • trunk/src/corelib/io/qfsfileengine_os2.cpp

    r660 r690  
    192192}
    193193
    194 /*!
    195     \internal
    196 */
    197194void QFSFileEnginePrivate::nativeInitFileName()
    198195{
     
    208205}
    209206
    210 /*!
    211     \internal
    212 */
    213207bool QFSFileEnginePrivate::nativeOpen(QIODevice::OpenMode openMode)
    214208{
     
    303297}
    304298
    305 /*!
    306     \internal
    307 */
    308299bool QFSFileEnginePrivate::nativeClose()
    309300{
     
    311302}
    312303
    313 /*!
    314     \internal
    315 
    316 */
    317304bool QFSFileEnginePrivate::nativeFlush()
    318305{
     
    320307}
    321308
    322 /*!
    323     \internal
    324 */
    325309qint64 QFSFileEnginePrivate::nativeRead(char *data, qint64 len)
    326310{
     
    384368}
    385369
    386 /*!
    387     \internal
    388 */
    389370qint64 QFSFileEnginePrivate::nativeReadLine(char *data, qint64 maxlen)
    390371{
     
    392373}
    393374
    394 /*!
    395     \internal
    396 */
    397375qint64 QFSFileEnginePrivate::nativeWrite(const char *data, qint64 len)
    398376{
     
    400378}
    401379
    402 /*!
    403     \internal
    404 */
    405380qint64 QFSFileEnginePrivate::nativePos() const
    406381{
     
    408383}
    409384
    410 /*!
    411     \internal
    412 */
    413385bool QFSFileEnginePrivate::nativeSeek(qint64 pos)
    414386{
     
    416388}
    417389
    418 /*!
    419     \internal
    420 */
    421390int QFSFileEnginePrivate::nativeHandle() const
    422391{
     
    424393}
    425394
    426 /*!
    427     \internal
    428 */
    429395bool QFSFileEnginePrivate::nativeIsSequential() const
    430396{
     
    556522}
    557523
    558 /*!
    559     Returns the canonicalized form of the current path used by the file
    560     engine for the drive specified by \a fileName.
    561 
    562     On OS/2, each drive has its own current directory, so a different
    563     path is returned for file names that include different drive names
    564     (e.g. A: or C:).
    565 
    566     \sa setCurrentPath()
    567 */
    568524QString QFSFileEngine::currentPath(const QString &fileName)
    569525{
     
    698654}
    699655
    700 /*!
    701     \reimp
    702 */
    703656QAbstractFileEngine::FileFlags QFSFileEngine::fileFlags(FileFlags type) const
    704657{
  • trunk/src/corelib/io/qprocess_os2.cpp

    r659 r690  
    17421742}
    17431743
    1744 /*! \internal
    1745  */
    17461744bool QProcessPrivate::startDetached(const QString &program, const QStringList &arguments,
    17471745                                    const QString &workingDirectory, qint64 *pid)
Note: See TracChangeset for help on using the changeset viewer.