diff options
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/dcc/chat.cpp | 2 | ||||
-rwxr-xr-x | src/modules/help/index.cpp | 6 | ||||
-rw-r--r-- | src/modules/objects/class_dockwindow.cpp | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/src/modules/dcc/chat.cpp b/src/modules/dcc/chat.cpp index a9171714..38d2ab19 100644 --- a/src/modules/dcc/chat.cpp +++ b/src/modules/dcc/chat.cpp @@ -233,7 +233,7 @@ void KviDccChat::connectionInProgress() m_pDescriptor->console()->connection()->sendData(m_pDescriptor->console()->connection()->encodeText(szReq).data()); output(KVI_OUT_DCCMSG,__tr2qs_ctx("Sent DCC %Q request to %Q, waiting for the remote client to connect...","dcc"), &(m_pDescriptor->szType),&(m_pDescriptor->szNick)); - //qDebug(m_pDescriptor->szNick); + //tqDebug(m_pDescriptor->szNick); } else output(KVI_OUT_DCCMSG,__tr2qs_ctx("DCC %Q request not sent, awaiting manual connection","dcc"),&(m_pDescriptor->szType)); } KVS_TRIGGER_EVENT_1(KviEvent_OnDCCChatConnectionInProgress,this,m_pDescriptor->idString()); diff --git a/src/modules/help/index.cpp b/src/modules/help/index.cpp index d77e6fed..3aa8d408 100755 --- a/src/modules/help/index.cpp +++ b/src/modules/help/index.cpp @@ -156,7 +156,7 @@ void Index::parseDocument( const TQString &filename, int docNum ) { KviFile file( filename ); if ( !file.openForReading() ) { - qWarning( "can not open file " + filename ); + tqWarning( "can not open file " + filename ); return; } TQTextStream s( &file ); @@ -452,7 +452,7 @@ TQString Index::getDocumentTitle( const TQString &fileName ) if ( !file.openForReading() ) { - qWarning( "cannot open file " + fileName ); + tqWarning( "cannot open file " + fileName ); return fileName; @@ -701,7 +701,7 @@ bool Index::searchForPattern( const TQStringList &patterns, const TQStringList & if ( !file.openForReading() ) { - qWarning( "cannot open file " + fileName ); + tqWarning( "cannot open file " + fileName ); return FALSE; diff --git a/src/modules/objects/class_dockwindow.cpp b/src/modules/objects/class_dockwindow.cpp index c0942a67..5e2beb1e 100644 --- a/src/modules/objects/class_dockwindow.cpp +++ b/src/modules/objects/class_dockwindow.cpp @@ -258,7 +258,7 @@ bool KviKvsObject_dockwindow::function_dock(KviKvsObjectFunctionCall * c) else if(szDock.find('r',false) != -1)g_pFrame->addDockWidget(TQt::RightDockWidgetArea,_pDockWindow); else if(szDock.find('b',false) != -1)g_pFrame->addDockWidget(TQt::BottomDockWidgetArea,_pDockWindow); else if(szDock.find('f',false) != -1)_pDockWindow->setFloating(true); - else if(szDock.find('m',false) != -1)qDebug("Sorry: no support for minimized dock widgets in TQt4"); + else if(szDock.find('m',false) != -1)tqDebug("Sorry: no support for minimized dock widgets in TQt4"); else c->warning(__tr2qs("Invalid dock area specified")); #else //!COMPILE_USE_QT4 |