summaryrefslogtreecommitdiffstats
path: root/klipper
diff options
context:
space:
mode:
Diffstat (limited to 'klipper')
-rw-r--r--klipper/toplevel.cpp6
-rw-r--r--klipper/urlgrabber.cpp4
2 files changed, 5 insertions, 5 deletions
diff --git a/klipper/toplevel.cpp b/klipper/toplevel.cpp
index d9821e45a..3c75502af 100644
--- a/klipper/toplevel.cpp
+++ b/klipper/toplevel.cpp
@@ -853,7 +853,7 @@ void KlipperWidget::checkClipData( bool selectionMode )
int i = 0;
while ( (format = clip->data()->format( i++ )) )
{
- qDebug( " format: %s", format);
+ tqDebug( " format: %s", format);
}
#endif
TQMimeSource* data = clip->data( selectionMode ? TQClipboard::Selection : TQClipboard::Clipboard );
@@ -1075,8 +1075,8 @@ static Bool update_x_time_predicate( Display*, XEvent* event, XPointer )
void KlipperWidget::updateTimestamp()
{ // Qt3.3.0 and 3.3.1 use qt_x_user_time for clipboard operations
- Time time = ( strcmp( qVersion(), "3.3.1" ) == 0
- || strcmp( qVersion(), "3.3.0" ) == 0 )
+ Time time = ( strcmp( tqVersion(), "3.3.1" ) == 0
+ || strcmp( tqVersion(), "3.3.0" ) == 0 )
? GET_QT_X_USER_TIME() : GET_QT_X_TIME();
static TQWidget* w = 0;
if ( !w )
diff --git a/klipper/urlgrabber.cpp b/klipper/urlgrabber.cpp
index c814508c1..dfe5d80e5 100644
--- a/klipper/urlgrabber.cpp
+++ b/klipper/urlgrabber.cpp
@@ -227,7 +227,7 @@ void URLGrabber::slotItemSelected( int id )
ClipCommand *command = myCommandMapper.find( id );
TQStringList *backrefs = myGroupingMapper.find( id );
if ( !command || !backrefs )
- qWarning("Klipper: can't find associated action");
+ tqWarning("Klipper: can't find associated action");
else
execute( command, backrefs );
}
@@ -259,7 +259,7 @@ void URLGrabber::execute( const struct ClipCommand *command,
proc << cmdLine.stripWhiteSpace();
if ( !proc.start(KProcess::DontCare, KProcess::NoCommunication ))
- qWarning("Klipper: Couldn't start process!");
+ tqWarning("Klipper: Couldn't start process!");
}
}