summaryrefslogtreecommitdiffstats
path: root/kopete/kopete/kopeteapplication.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/kopete/kopeteapplication.cpp')
-rw-r--r--kopete/kopete/kopeteapplication.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/kopete/kopete/kopeteapplication.cpp b/kopete/kopete/kopeteapplication.cpp
index 3db6c51f..d23c74f7 100644
--- a/kopete/kopete/kopeteapplication.cpp
+++ b/kopete/kopete/kopeteapplication.cpp
@@ -104,7 +104,7 @@ KopeteApplication::~KopeteApplication()
void KopeteApplication::slotLoadPlugins()
{
- // we have to load the address book early, because calling this enters the Qt event loop when there are remote resources.
+ // we have to load the address book early, because calling this enters the TQt event loop when there are remote resources.
// The plugin manager is written with the assumption that Kopete will not reenter the event loop during plugin load,
// otherwise lots of things break as plugins are loaded, then contacts are added to incompletely initialised MCLVIs
Kopete::KABCPersistence::self()->addressBook();
@@ -221,7 +221,7 @@ void KopeteApplication::slotAllPluginsLoaded()
for ( QCStringList::ConstIterator it = connectArgsC.begin(); it != connectArgsC.end(); ++it )
{
- TQStringList split = TQStringList::split( ',', TQString::fromLatin1( *it ) );
+ TQStringList split = TQStringList::split( ',', TQString::tqfromLatin1( *it ) );
for ( TQStringList::ConstIterator it2 = split.begin(); it2 != split.end(); ++it2 )
{
@@ -231,7 +231,7 @@ void KopeteApplication::slotAllPluginsLoaded()
for ( TQStringList::ConstIterator i = connectArgs.begin(); i != connectArgs.end(); ++i )
{
- TQRegExp rx( TQString::fromLatin1( "([^\\|]*)\\|\\|(.*)" ) );
+ TQRegExp rx( TQString::tqfromLatin1( "([^\\|]*)\\|\\|(.*)" ) );
rx.search( *i );
TQString protocolId = rx.cap( 1 );
TQString accountId = rx.cap( 2 );
@@ -285,10 +285,10 @@ int KopeteApplication::newInstance()
*/
setMainWidget( m_mainWindow );
- int kUniqAppReturnCode = KUniqueApplication::newInstance();
+ int kUnitqAppReturnCode = KUniqueApplication::newInstance();
setMainWidget( 0L );
- return kUniqAppReturnCode;
+ return kUnitqAppReturnCode;
}
void KopeteApplication::handleURLArgs()
@@ -328,7 +328,7 @@ void KopeteApplication::quitKopete()
}
-void KopeteApplication::commitData( QSessionManager &sm )
+void KopeteApplication::commitData( TQSessionManager &sm )
{
m_isShuttingDown = true;
KUniqueApplication::commitData( sm );