diff options
Diffstat (limited to 'kopete/plugins/history/historyplugin.cpp')
-rw-r--r-- | kopete/plugins/history/historyplugin.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/kopete/plugins/history/historyplugin.cpp b/kopete/plugins/history/historyplugin.cpp index fb48e79f..8404d38d 100644 --- a/kopete/plugins/history/historyplugin.cpp +++ b/kopete/plugins/history/historyplugin.cpp @@ -45,18 +45,18 @@ HistoryPlugin::HistoryPlugin( TQObject *parent, const char *name, const TQString : Kopete::Plugin( HistoryPluginFactory::instance(), parent, name ), m_loggerFactory( this ) { TDEAction *viewMetaContactHistory = new TDEAction( i18n("View &History" ), - TQString::fromLatin1( "history" ), 0, this, TQT_SLOT(slotViewHistory()), + TQString::fromLatin1( "history" ), 0, this, TQ_SLOT(slotViewHistory()), actionCollection(), "viewMetaContactHistory" ); viewMetaContactHistory->setEnabled( Kopete::ContactList::self()->selectedMetaContacts().count() == 1 ); - connect(Kopete::ContactList::self(), TQT_SIGNAL(metaContactSelected(bool)), - viewMetaContactHistory, TQT_SLOT(setEnabled(bool))); + connect(Kopete::ContactList::self(), TQ_SIGNAL(metaContactSelected(bool)), + viewMetaContactHistory, TQ_SLOT(setEnabled(bool))); - connect(Kopete::ChatSessionManager::self(), TQT_SIGNAL(viewCreated(KopeteView*)), - this, TQT_SLOT(slotViewCreated(KopeteView*))); + connect(Kopete::ChatSessionManager::self(), TQ_SIGNAL(viewCreated(KopeteView*)), + this, TQ_SLOT(slotViewCreated(KopeteView*))); - connect(this, TQT_SIGNAL(settingsChanged()), this, TQT_SLOT(slotSettingsChanged())); + connect(this, TQ_SIGNAL(settingsChanged()), this, TQ_SLOT(slotSettingsChanged())); setXMLFile("historyui.rc"); if(detectOldHistory()) @@ -79,8 +79,8 @@ HistoryPlugin::HistoryPlugin( TQObject *parent, const char *name, const TQString if(!m_loggers.contains(*it)) { m_loggers.insert(*it, new HistoryGUIClient( *it ) ); - connect( *it, TQT_SIGNAL(closing(Kopete::ChatSession*)), - this, TQT_SLOT(slotKMMClosed(Kopete::ChatSession*))); + connect( *it, TQ_SIGNAL(closing(Kopete::ChatSession*)), + this, TQ_SLOT(slotKMMClosed(Kopete::ChatSession*))); } } } @@ -105,8 +105,8 @@ void HistoryPlugin::messageDisplayed(const Kopete::Message &m) if(!m_loggers.contains(m.manager())) { m_loggers.insert(m.manager() , new HistoryGUIClient( m.manager() ) ); - connect(m.manager(), TQT_SIGNAL(closing(Kopete::ChatSession*)), - this, TQT_SLOT(slotKMMClosed(Kopete::ChatSession*))); + connect(m.manager(), TQ_SIGNAL(closing(Kopete::ChatSession*)), + this, TQ_SLOT(slotKMMClosed(Kopete::ChatSession*))); } HistoryLogger *l=m_loggers[m.manager()]->logger(); @@ -152,8 +152,8 @@ void HistoryPlugin::slotViewCreated( KopeteView* v ) if(!m_loggers.contains(m_currentChatSession)) { m_loggers.insert(m_currentChatSession , new HistoryGUIClient( m_currentChatSession ) ); - connect( m_currentChatSession, TQT_SIGNAL(closing(Kopete::ChatSession*)), - this , TQT_SLOT(slotKMMClosed(Kopete::ChatSession*))); + connect( m_currentChatSession, TQ_SIGNAL(closing(Kopete::ChatSession*)), + this , TQ_SLOT(slotKMMClosed(Kopete::ChatSession*))); } if(!autoChatWindow || nbAutoChatWindow == 0) |