diff options
Diffstat (limited to 'kbugbuster/gui/kbbmainwindow.h')
-rw-r--r-- | kbugbuster/gui/kbbmainwindow.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/kbugbuster/gui/kbbmainwindow.h b/kbugbuster/gui/kbbmainwindow.h index f139c733..b16479cf 100644 --- a/kbugbuster/gui/kbbmainwindow.h +++ b/kbugbuster/gui/kbbmainwindow.h @@ -19,7 +19,7 @@ #include <kapplication.h> #include <kbookmarkmanager.h> #include <kmainwindow.h> -#include <qmap.h> +#include <tqmap.h> #include "package.h" #include "bug.h" @@ -52,22 +52,22 @@ class KBBMainWindow : public KMainWindow, virtual public KBookmarkOwner /** * construtor of KBugBusterApp, calls all init functions to create the application. */ - KBBMainWindow( const QCString &initialPackage = "", - const QCString &initialCpomponent = "", - const QCString &initialBug = "", - QWidget* parent = 0, const char* name = 0 ); + KBBMainWindow( const TQCString &initialPackage = "", + const TQCString &initialCpomponent = "", + const TQCString &initialBug = "", + TQWidget* parent = 0, const char* name = 0 ); ~KBBMainWindow(); /// Overloaded functions of KBookmarkOwner - virtual void openBookmarkURL( const QString & _url ); - virtual QString currentTitle() const; - virtual QString currentURL() const; + virtual void openBookmarkURL( const TQString & _url ); + virtual TQString currentTitle() const; + virtual TQString currentURL() const; public slots: /** * Event handlers for our KActions */ - void slotStatusMsg( const QString &text ); + void slotStatusMsg( const TQString &text ); void slotDisconnectedAction(); void slotSubmit(); void slotListChanges(); @@ -122,8 +122,8 @@ class KBBMainWindow : public KMainWindow, virtual public KBookmarkOwner * Status bar label. We need this, because the default Qt version doesn't * support rich text in the messages */ - QLabel *m_statusLabel; - QProgressBar *m_progressBar; + TQLabel *m_statusLabel; + TQProgressBar *m_progressBar; PreferencesDialog *mPreferencesDialog; |