diff options
Diffstat (limited to 'konversation/src/konversationmainwindow.h')
-rw-r--r-- | konversation/src/konversationmainwindow.h | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/konversation/src/konversationmainwindow.h b/konversation/src/konversationmainwindow.h index 5781e9f..82ee0db 100644 --- a/konversation/src/konversationmainwindow.h +++ b/konversation/src/konversationmainwindow.h @@ -22,7 +22,7 @@ #include "nickinfo.h" #include "server.h" -#include <qstringlist.h> +#include <tqstringlist.h> #include <kmainwindow.h> #include <kaction.h> @@ -61,10 +61,10 @@ class KonversationMainWindow : public KMainWindow * (e.g. the user choses "Chat with X" in kmail) but that person isn't * recognised, we need to give immediate feedback to the user. */ - void focusAndShowErrorMessage(const QString &errorMsg); + void focusAndShowErrorMessage(const TQString &errorMsg); - QString currentURL(bool passNetwork); - QString currentTitle(); + TQString currentURL(bool passNetwork); + TQString currentTitle(); signals: void startNotifyTimer(int msec); @@ -85,7 +85,7 @@ class KonversationMainWindow : public KMainWindow void openIdentitiesDialog(); IdentityPtr editIdentity(IdentityPtr identity); - void setOnlineList(Server* notifyServer,const QStringList& list, bool changed); + void setOnlineList(Server* notifyServer,const TQStringList& list, bool changed); protected slots: /** This is connected to the preferences settingsChanged signal and acts to compress @@ -94,7 +94,7 @@ class KonversationMainWindow : public KMainWindow * * Do not connect to the settingsChanged signal elsewhere. If you want to know when * the settings have changed, connect to: - * KonversationApplication::instance(), SIGNAL(appearanceChanged()) + * KonversationApplication::instance(), TQT_SIGNAL(appearanceChanged()) */ void settingsChangedSlot(); @@ -116,18 +116,18 @@ class KonversationMainWindow : public KMainWindow // it seems that moc does not honor #ifs in compile so we create an // empty slot in our .cpp file rather than #if this slot out void openNotifications(); - void notifyAction(const QString& serverName,const QString& nick); + void notifyAction(const TQString& serverName,const TQString& nick); void quitProgram(); - void showEvent(QShowEvent* e); - void hideEvent(QHideEvent* e); - void leaveEvent(QEvent* e); + void showEvent(TQShowEvent* e); + void hideEvent(TQHideEvent* e); + void leaveEvent(TQEvent* e); protected: int confirmQuit(); bool queryClose(); - virtual bool event(QEvent* e); + virtual bool event(TQEvent* e); ViewContainer* m_viewContainer; KonversationStatusBar* m_statusBar; |