diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:30:40 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:30:40 -0600 |
commit | 32459311b349db581cc5fb0d80739a95b3d998b4 (patch) | |
tree | fd6475e6f0e015fce495961d6a0c50027bb95faa /qtjava/javalib/examples | |
parent | ef5a04df564ad5c27406c41fb55e32ad3aa39d25 (diff) | |
download | tdebindings-32459311b349db581cc5fb0d80739a95b3d998b4.tar.gz tdebindings-32459311b349db581cc5fb0d80739a95b3d998b4.zip |
Rename additional global TQt functions
Diffstat (limited to 'qtjava/javalib/examples')
-rw-r--r-- | qtjava/javalib/examples/iconview/ListenDND.java | 10 | ||||
-rw-r--r-- | qtjava/javalib/examples/widgets/WidgetView.java | 10 |
2 files changed, 10 insertions, 10 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; diff --git a/qtjava/javalib/examples/widgets/WidgetView.java b/qtjava/javalib/examples/widgets/WidgetView.java index 77382908..f8261edf 100644 --- a/qtjava/javalib/examples/widgets/WidgetView.java +++ b/qtjava/javalib/examples/widgets/WidgetView.java @@ -794,21 +794,21 @@ void dummy() void selectionChanged() { - //qDebug("selectionChanged"); + //tqDebug("selectionChanged"); } void selectionChanged( TQListViewItem item) { - //qDebug("selectionChanged %p", item ); + //tqDebug("selectionChanged %p", item ); } void clicked( TQListViewItem item ) { - //qDebug("clicked %p", item ); + //tqDebug("clicked %p", item ); } void mySelectionChanged( TQListViewItem item ) { - //qDebug("mySelectionChanged %p", item ); + //tqDebug("mySelectionChanged %p", item ); } void showProperties() @@ -824,6 +824,6 @@ void showProperties() + " (read-" + (p.writable() ? "write" : "only") + ", " + p.type() + ")"; output += tmp; } - qDebug( output ); + tqDebug( output ); } } |