author | ar <ar> | 2004-06-03 19:02:20 (UTC) |
---|---|---|
committer | ar <ar> | 2004-06-03 19:02:20 (UTC) |
commit | 74109985fd9ebdffd6cf0416207a69b17b563fd6 (patch) (side-by-side diff) | |
tree | a06b7bc9bd5e90dc48174fd77775842cce003110 /libopie2/examples/opieui/olistviewdemo | |
parent | 25c5d7d615d1f476f206a40892877e259eeb365c (diff) | |
download | opie-74109985fd9ebdffd6cf0416207a69b17b563fd6.zip opie-74109985fd9ebdffd6cf0416207a69b17b563fd6.tar.gz opie-74109985fd9ebdffd6cf0416207a69b17b563fd6.tar.bz2 |
- convert to odebug framework
Diffstat (limited to 'libopie2/examples/opieui/olistviewdemo') (more/less context) (ignore whitespace changes)
-rw-r--r-- | libopie2/examples/opieui/olistviewdemo/olistviewdemo.cpp | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/libopie2/examples/opieui/olistviewdemo/olistviewdemo.cpp b/libopie2/examples/opieui/olistviewdemo/olistviewdemo.cpp index 7834b3b..4c05620 100644 --- a/libopie2/examples/opieui/olistviewdemo/olistviewdemo.cpp +++ b/libopie2/examples/opieui/olistviewdemo/olistviewdemo.cpp @@ -31,8 +31,12 @@ */ #include "olistviewdemo.h" + +/* OPIE */ #include <opie2/olistview.h> +#include <opie2/odebug.h> +/* QT */ #include <qstring.h> #include <qpixmap.h> #include <qlistview.h> @@ -65,14 +69,14 @@ OListViewDemo::OListViewDemo( QWidget* parent, const char* name, WFlags f ) item = new ONamedListViewItem( item, QStringList::split( ' ', "Text1 Text2 Text3 Mickey" ) ); if ( lv->find( 3, "Mickey", 3 ) ) - qDebug( "found Mickey :-)" ); + odebug << "found Mickey :-)" << oendl; else - qDebug( "did not found Mickey :-(" ); + odebug << "did not found Mickey :-(" << oendl; if ( lv->find( 3, "Minni", 0 ) ) - qDebug( "found Minni :-)" ); + odebug << "found Minni :-)" << oendl; else - qDebug( "did not found Minni :-(" ); + odebug << "did not found Minni :-(" << oendl; } |