summaryrefslogtreecommitdiffstats
path: root/src/kernel/qmotifdnd_x11.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/qmotifdnd_x11.cpp')
-rw-r--r--src/kernel/qmotifdnd_x11.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/kernel/qmotifdnd_x11.cpp b/src/kernel/qmotifdnd_x11.cpp
index c9399f9..201ac33 100644
--- a/src/kernel/qmotifdnd_x11.cpp
+++ b/src/kernel/qmotifdnd_x11.cpp
@@ -597,12 +597,12 @@ static DndTargetsTable TargetsTable(Display *display)
&type, &format, &size, &bytes_after,
(unsigned char **) &target_prop) != Success) ||
type == None) {
- qWarning("QMotifDND: cannot get property on motif window");
+ tqWarning("QMotifDND: cannot get property on motif window");
return 0;
}
if (target_prop->protocol_version != DND_PROTOCOL_VERSION) {
- qWarning("QMotifDND: protocol mismatch");
+ tqWarning("QMotifDND: protocol mismatch");
}
if (target_prop->byte_order != DndByteOrder()) {
@@ -726,7 +726,7 @@ QByteArray qt_motifdnd_obtain_data( const char *mimeType )
QByteArray result;
// try to convert the selection to the requested property
- // qDebug( "trying to convert to '%s'", mimeType );
+ // tqDebug( "trying to convert to '%s'", mimeType );
int n=0;
const char* f;
@@ -735,18 +735,18 @@ QByteArray qt_motifdnd_obtain_data( const char *mimeType )
if ( !f )
return result;
n++;
- } while( qstricmp( mimeType, f ) );
+ } while( tqstricmp( mimeType, f ) );
// found one
Atom conversion_type;
- if ( qstrnicmp( f, "text/", 5 ) == 0 ) {
+ if ( tqstrnicmp( f, "text/", 5 ) == 0 ) {
// always convert text to XA_STRING for compatibility with
// prior Qt versions
conversion_type = XA_STRING;
} else {
conversion_type = *qt_xdnd_str_to_atom( f );
- // qDebug( "found format '%s' 0x%lx '%s'", f, conversion_type,
+ // tqDebug( "found format '%s' 0x%lx '%s'", f, conversion_type,
// qt_xdnd_atom_to_str( conversion_type ) );
}