summaryrefslogtreecommitdiffstats
path: root/kommander/editor/formfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'kommander/editor/formfile.h')
-rw-r--r--kommander/editor/formfile.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/kommander/editor/formfile.h b/kommander/editor/formfile.h
index 39fecc67..89ba2f1d 100644
--- a/kommander/editor/formfile.h
+++ b/kommander/editor/formfile.h
@@ -20,7 +20,7 @@
#ifndef FORMFILE_H
#define FORMFILE_H
-#include <qobject.h>
+#include <tqobject.h>
#include "timestamp.h"
#include "metadatabase.h"
@@ -31,23 +31,23 @@ class FormFile : public QObject
Q_OBJECT
public:
- FormFile(const QString &fn, bool temp);
+ FormFile(const TQString &fn, bool temp);
~FormFile();
void setFormWindow( FormWindow *f );
- void setFileName( const QString &fn );
+ void setFileName( const TQString &fn );
void setModified(bool m);
FormWindow *formWindow() const;
- QString fileName() const;
- QString absFileName() const;
+ TQString fileName() const;
+ TQString absFileName() const;
bool save( bool withMsgBox = TRUE );
bool saveAs();
bool close();
bool closeEvent();
bool isModified();
void showFormWindow();
- static QString createUnnamedFileName();
- QString formName() const;
+ static TQString createUnnamedFileName();
+ TQString formName() const;
bool hasTempFileName() const {return fileNameTemp;}
signals:
@@ -64,10 +64,10 @@ private:
void setFormWindowModified( bool m );
private:
- QString filename;
+ TQString filename;
bool fileNameTemp;
FormWindow *fw;
- QString cachedFormName;
+ TQString cachedFormName;
};