summaryrefslogtreecommitdiffstats
path: root/qtjava/javalib/examples/iconview/ListenDND.java
diff options
context:
space:
mode:
Diffstat (limited to 'qtjava/javalib/examples/iconview/ListenDND.java')
-rw-r--r--qtjava/javalib/examples/iconview/ListenDND.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/qtjava/javalib/examples/iconview/ListenDND.java b/qtjava/javalib/examples/iconview/ListenDND.java
index e6bec795..c3ee925f 100644
--- a/qtjava/javalib/examples/iconview/ListenDND.java
+++ b/qtjava/javalib/examples/iconview/ListenDND.java
@@ -17,18 +17,18 @@ public ListenDND( TQWidget w )
{view = w;}
void dropped( TQDropEvent mime ) {
- qDebug( "Dropped Mimesource {0} into the view {1}", new Object[] { mime, view } );
- qDebug( " Formats:" );
+ tqDebug( "Dropped Mimesource {0} into the view {1}", new Object[] { mime, view } );
+ tqDebug( " Formats:" );
int i = 0;
String str = mime.format( i );
- qDebug( " " + str );
+ tqDebug( " " + str );
while ( str != null ) {
- qDebug( " " + str );
+ tqDebug( " " + str );
str = mime.format( ++i );
}
};
void moved() {
- qDebug( "All selected items were moved to another widget" );
+ tqDebug( "All selected items were moved to another widget" );
}
protected TQWidget view;