diff options
Diffstat (limited to 'korganizer/koeventviewer.h')
-rw-r--r-- | korganizer/koeventviewer.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/korganizer/koeventviewer.h b/korganizer/koeventviewer.h index 31a4160d6..80b1ef772 100644 --- a/korganizer/koeventviewer.h +++ b/korganizer/koeventviewer.h @@ -24,7 +24,7 @@ #ifndef KOEVENTVIEWER_H #define KOEVENTVIEWER_H -#include <qtextbrowser.h> +#include <tqtextbrowser.h> #include <kdepimmacros.h> #include <kconfig.h> @@ -43,13 +43,13 @@ class KDE_EXPORT KOEventViewer : public QTextBrowser { Q_OBJECT public: - KOEventViewer( QWidget *parent = 0, const char *name = 0 ); + KOEventViewer( TQWidget *parent = 0, const char *name = 0 ); virtual ~KOEventViewer(); /** - Reimplemented from QTextBrowser to handle links. + Reimplemented from TQTextBrowser to handle links. */ - void setSource( const QString & ); + void setSource( const TQString & ); virtual bool appendIncidence( Incidence * ); @@ -63,13 +63,13 @@ class KDE_EXPORT KOEventViewer : public QTextBrowser Add given text to currently shown content. */ - void addText( const QString &text ); + void addText( const TQString &text ); /** Set the default text that is showed when there aren't a incidence to show */ - void setDefaultText( const QString &text ); + void setDefaultText( const TQString &text ); void readSettings( KConfig *config); void writeSettings ( KConfig *config); @@ -82,9 +82,9 @@ class KDE_EXPORT KOEventViewer : public QTextBrowser void changeIncidenceDisplay( Incidence *incidence, int action ); private: Incidence *mIncidence; - QTextBrowser *mEventTextView; - QString mDefaultText; - QString mText; + TQTextBrowser *mEventTextView; + TQString mDefaultText; + TQString mText; }; #endif |