summaryrefslogtreecommitdiffstats
path: root/kjsembed/tools/headers/qdir.h
diff options
context:
space:
mode:
Diffstat (limited to 'kjsembed/tools/headers/qdir.h')
-rw-r--r--kjsembed/tools/headers/qdir.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kjsembed/tools/headers/qdir.h b/kjsembed/tools/headers/qdir.h
index 7fda3222..5542fd0e 100644
--- a/kjsembed/tools/headers/qdir.h
+++ b/kjsembed/tools/headers/qdir.h
@@ -52,7 +52,7 @@ class TQStringList;
template <class T> class TQDeepCopy;
-class Q_EXPORT TQDir
+class TQ_EXPORT TQDir
{
public:
enum FilterSpec { Dirs = 0x001,
@@ -102,13 +102,13 @@ public:
virtual TQString dirName() const;
virtual TQString filePath( const TQString &fileName,
- bool acceptAbsPath = TRUE ) const;
+ bool acceptAbsPath = true ) const;
virtual TQString absFilePath( const TQString &fileName,
- bool acceptAbsPath = TRUE ) const;
+ bool acceptAbsPath = true ) const;
static TQString convertSeparators( const TQString &pathName );
- virtual bool cd( const TQString &dirName, bool acceptAbsPath = TRUE );
+ virtual bool cd( const TQString &dirName, bool acceptAbsPath = true );
virtual bool cdUp();
TQString nameFilter() const;
@@ -144,9 +144,9 @@ public:
static const TQFileInfoList *drives();
virtual bool mkdir( const TQString &dirName,
- bool acceptAbsPath = TRUE ) const;
+ bool acceptAbsPath = true ) const;
virtual bool rmdir( const TQString &dirName,
- bool acceptAbsPath = TRUE ) const;
+ bool acceptAbsPath = true ) const;
virtual bool isReadable() const;
virtual bool exists() const;
@@ -159,11 +159,11 @@ public:
virtual bool operator!=( const TQDir & ) const;
virtual bool remove( const TQString &fileName,
- bool acceptAbsPath = TRUE );
+ bool acceptAbsPath = true );
virtual bool rename( const TQString &name, const TQString &newName,
- bool acceptAbsPaths = TRUE );
+ bool acceptAbsPaths = true );
virtual bool exists( const TQString &name,
- bool acceptAbsPath = TRUE );
+ bool acceptAbsPath = true );
static char separator();