summaryrefslogtreecommitdiffstats
path: root/kverbos/kverbos/kverbosdoc.h
diff options
context:
space:
mode:
Diffstat (limited to 'kverbos/kverbos/kverbosdoc.h')
-rw-r--r--kverbos/kverbos/kverbosdoc.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/kverbos/kverbos/kverbosdoc.h b/kverbos/kverbos/kverbosdoc.h
index f23033c7..efe5d98c 100644
--- a/kverbos/kverbos/kverbosdoc.h
+++ b/kverbos/kverbos/kverbosdoc.h
@@ -23,7 +23,7 @@
#endif
// include files for QT
-#include <qfile.h>
+#include <tqfile.h>
// include files for KDE
#include <kurl.h>
@@ -65,7 +65,7 @@ class KVerbosDoc : public QObject
/**
* Constructor for the fileclass of the application
*/
- KVerbosDoc(QWidget *parent, const char *name=0);
+ KVerbosDoc(TQWidget *parent, const char *name=0);
/**
* Destructor for the fileclass of the application
*/
@@ -92,21 +92,21 @@ class KVerbosDoc : public QObject
* schieden
*/
bool openDocument(const KURL& url, const char *format=0);
- bool openDocHTML(QFile &f);
- bool openDocVERBOS(QFile &f);
+ bool openDocHTML(TQFile &f);
+ bool openDocVERBOS(TQFile &f);
/** saves the document under filename and format.
* Die Datei kann wahlweise im HTML-Format oder als normale Textdatei abgespeichert
* werden. Die HTML-Datei ist umfangreicher, weil der formatierende HTML-Code
* ergänzt werden muss.
*/
bool saveDocument(const KURL& url, const char *format=0);
- bool saveDocHTML(QFile &f);
- bool saveDocVERBOS(QFile &f);
+ bool saveDocHTML(TQFile &f);
+ bool saveDocVERBOS(TQFile &f);
/** sets a new user name, and deletes the old one. If the old one is different from
* the default name DEFAULTUSER then some information is stored about the user. The
* Program look if some information about the user is stored.
*/
- void setNewUser(const QString n);
+ void setNewUser(const TQString n);
/** returns a pointer to the actual user object */
KVerbosUser* getUser() { return benutzer; }
/** returns the KURL of the document */
@@ -126,12 +126,12 @@ class KVerbosDoc : public QObject
/** Gibt die gewählte Zeit, die Formen des Verbes dazu und den spanischen
* und deutschen Infinitiv zurück
*/
- QString getAuswahl(QString s[][3], int &t);
+ TQString getAuswahl(TQString s[][3], int &t);
/** feedback from the view class about the solution */
void solved(const bool b);
private:
/** searches the verb given as a string in the list and returns a pointer to the verb */
- spanishVerbList::Iterator findVerb(const QString& s);
+ spanishVerbList::Iterator findVerb(const TQString& s);
signals:
/** wird emittiert, wenn sich die Anzahl der Verben im Dokument verändert hat */
@@ -149,7 +149,7 @@ class KVerbosDoc : public QObject
/**
* the list of the views currently connected to the document
*/
- static QPtrList<KVerbosView> *pViewList;
+ static TQPtrList<KVerbosView> *pViewList;
private:
/**