summaryrefslogtreecommitdiffstats
path: root/examples/iconview/main.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:11:59 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-02 02:11:59 -0600
commit9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch)
treedf1e10cc7504665622d096f9ba80dc9e56f3afb8 /examples/iconview/main.cpp
parenta830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff)
downloadqt3-9a75b154.tar.gz
qt3-9a75b154.zip
Undo prior accidental commit
Diffstat (limited to 'examples/iconview/main.cpp')
-rw-r--r--examples/iconview/main.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/iconview/main.cpp b/examples/iconview/main.cpp
index d16604f..8784e93 100644
--- a/examples/iconview/main.cpp
+++ b/examples/iconview/main.cpp
@@ -27,18 +27,18 @@ public:
public slots:
void dropped( QDropEvent *mime ) {
- tqDebug( "Dropped Mimesource %p into the view %p", mime, view );
- tqDebug( " Formats:" );
+ qDebug( "Dropped Mimesource %p into the view %p", mime, view );
+ qDebug( " Formats:" );
int i = 0;
const char *str = mime->format( i );
- tqDebug( " %s", str );
+ qDebug( " %s", str );
while ( str ) {
- tqDebug( " %s", str );
+ qDebug( " %s", str );
str = mime->format( ++i );
}
};
void moved() {
- tqDebug( "All selected items were moved to another widget" );
+ qDebug( "All selected items were moved to another widget" );
}
protected: