diff options
author | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-03-02 02:11:59 -0600 |
commit | 9a75b154bf0732aa3a501b6e31e566e06c5f8a31 (patch) | |
tree | df1e10cc7504665622d096f9ba80dc9e56f3afb8 /examples/iconview | |
parent | a830bf10b7d4ed2c83ffe68c0b22d7c4ba9860b0 (diff) | |
download | qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.tar.gz qt3-9a75b154bf0732aa3a501b6e31e566e06c5f8a31.zip |
Undo prior accidental commit
Diffstat (limited to 'examples/iconview')
-rw-r--r-- | examples/iconview/main.cpp | 10 |
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: |