diff options
author | Michele Calgaro <[email protected]> | 2018-10-17 19:46:30 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2018-10-17 19:46:30 +0900 |
commit | 69d87202cb139ffe9e4b3ce92e434523b7b09b64 (patch) | |
tree | 7b133311a4d5e5394f2612dced305f815c04847b /src/tools/qfileinfo.cpp | |
parent | e07baa10b7b8e7105e02a621efadac67216c61ed (diff) | |
download | tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.tar.gz tqt3-69d87202cb139ffe9e4b3ce92e434523b7b09b64.zip |
QT_NO_* -> TQT_NO_* renaming.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/tools/qfileinfo.cpp')
-rw-r--r-- | src/tools/qfileinfo.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/tools/qfileinfo.cpp b/src/tools/qfileinfo.cpp index 288df5b67..763324d15 100644 --- a/src/tools/qfileinfo.cpp +++ b/src/tools/qfileinfo.cpp @@ -199,7 +199,7 @@ TQFileInfo::TQFileInfo( const TQFile &file ) \sa isRelative() */ -#ifndef QT_NO_DIR +#ifndef TQT_NO_DIR TQFileInfo::TQFileInfo( const TQDir &d, const TQString &fileName ) { fn = d.filePath( fileName ); @@ -332,7 +332,7 @@ void TQFileInfo::setFile( const TQFile &file ) \sa isRelative() */ -#ifndef QT_NO_DIR +#ifndef TQT_NO_DIR void TQFileInfo::setFile( const TQDir &d, const TQString &fileName ) { fn = d.filePath( fileName ); @@ -481,7 +481,7 @@ TQString TQFileInfo::extension( bool complete ) const \sa dirPath(), filePath(), fileName(), isRelative() */ -#ifndef QT_NO_DIR +#ifndef TQT_NO_DIR TQDir TQFileInfo::dir( bool absPath ) const { return TQDir( dirPath(absPath) ); @@ -550,7 +550,7 @@ bool TQFileInfo::isHidden() const the path is absolute (e.g. under Unix a path is absolute if it begins with a "/"). */ -#ifndef QT_NO_DIR +#ifndef TQT_NO_DIR bool TQFileInfo::isRelative() const { return TQDir::isRelativePath( fn ); @@ -656,7 +656,7 @@ TQDateTime TQFileInfo::lastRead() const } } -#ifndef QT_NO_DIR +#ifndef TQT_NO_DIR /*! Returns the absolute path including the file name. |