summaryrefslogtreecommitdiffstats
path: root/kdevdesigner/designer/sourcefile.h
diff options
context:
space:
mode:
Diffstat (limited to 'kdevdesigner/designer/sourcefile.h')
-rw-r--r--kdevdesigner/designer/sourcefile.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/kdevdesigner/designer/sourcefile.h b/kdevdesigner/designer/sourcefile.h
index 438d9b4c..79083c83 100644
--- a/kdevdesigner/designer/sourcefile.h
+++ b/kdevdesigner/designer/sourcefile.h
@@ -27,7 +27,7 @@
#ifndef SOURCEFILE_H
#define SOURCEFILE_H
-#include <qobject.h>
+#include <tqobject.h>
#include "timestamp.h"
struct DesignerSourceFile;
@@ -39,10 +39,10 @@ class SourceFile : public QObject
Q_OBJECT
public:
- SourceFile( const QString &fn, bool temp, Project *p );
+ SourceFile( const TQString &fn, bool temp, Project *p );
~SourceFile();
- void setText( const QString &s );
+ void setText( const TQString &s );
void setModified( bool m );
bool save( bool ignoreModified = FALSE );
@@ -52,8 +52,8 @@ public:
bool closeEvent();
Project *project() const;
- QString text() const;
- QString fileName() const { return filename; }
+ TQString text() const;
+ TQString fileName() const { return filename; }
bool isModified() const;
void checkTimeStamp();
@@ -63,7 +63,7 @@ public:
void setEditor( SourceEditor *e );
SourceEditor *editor() const { return ed; }
- static QString createUnnamedFileName( const QString &extension );
+ static TQString createUnnamedFileName( const TQString &extension );
bool isAccepted() const { return accepted; }
@@ -71,8 +71,8 @@ private:
bool checkFileName( bool allowBreak );
private:
- QString filename;
- QString txt;
+ TQString filename;
+ TQString txt;
DesignerSourceFile *iface;
SourceEditor *ed;
bool fileNameTemp;