summaryrefslogtreecommitdiffstats
path: root/konversation/src/chatwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'konversation/src/chatwindow.cpp')
-rw-r--r--konversation/src/chatwindow.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/konversation/src/chatwindow.cpp b/konversation/src/chatwindow.cpp
index 2538930..713ba9d 100644
--- a/konversation/src/chatwindow.cpp
+++ b/konversation/src/chatwindow.cpp
@@ -101,7 +101,7 @@ void ChatWindow::setServer(Server* newServer)
else
{
m_server=newServer;
- connect(m_server,TQT_SIGNAL (serverOnline(bool)),this,TQT_SLOT (serverOnline(bool)) );
+ connect(m_server,TQ_SIGNAL (serverOnline(bool)),this,TQ_SLOT (serverOnline(bool)) );
// check if we need to set up the signals
if(getType() != ChannelList)
@@ -143,9 +143,9 @@ void ChatWindow::setTextView(IRCView* newView)
}
textView->setChatWin(this);
- connect(textView,TQT_SIGNAL(textToLog(const TQString&)), this,TQT_SLOT(logText(const TQString&)));
- connect(textView,TQT_SIGNAL(setStatusBarTempText(const TQString&)), this, TQT_SIGNAL(setStatusBarTempText(const TQString&)));
- connect(textView,TQT_SIGNAL(clearStatusBarTempText()), this, TQT_SIGNAL(clearStatusBarTempText()));
+ connect(textView,TQ_SIGNAL(textToLog(const TQString&)), this,TQ_SLOT(logText(const TQString&)));
+ connect(textView,TQ_SIGNAL(setStatusBarTempText(const TQString&)), this, TQ_SIGNAL(setStatusBarTempText(const TQString&)));
+ connect(textView,TQ_SIGNAL(clearStatusBarTempText()), this, TQ_SIGNAL(clearStatusBarTempText()));
}
void ChatWindow::appendRaw(const TQString& message, bool suppressTimestamps)