summaryrefslogtreecommitdiff
path: root/libopie2/examples/opieui/olistviewdemo/olistviewdemo.cpp
Unidiff
Diffstat (limited to 'libopie2/examples/opieui/olistviewdemo/olistviewdemo.cpp') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/examples/opieui/olistviewdemo/olistviewdemo.cpp12
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
@@ -28,14 +28,18 @@
28 Inc., 59 Temple Place - Suite 330, 28 Inc., 59 Temple Place - Suite 330,
29 Boston, MA 02111-1307, USA. 29 Boston, MA 02111-1307, USA.
30 30
31*/ 31*/
32 32
33#include "olistviewdemo.h" 33#include "olistviewdemo.h"
34
35/* OPIE */
34#include <opie2/olistview.h> 36#include <opie2/olistview.h>
37#include <opie2/odebug.h>
35 38
39/* QT */
36#include <qstring.h> 40#include <qstring.h>
37#include <qpixmap.h> 41#include <qpixmap.h>
38#include <qlistview.h> 42#include <qlistview.h>
39 43
40using namespace Opie::Ui; 44using namespace Opie::Ui;
41 45
@@ -62,20 +66,20 @@ OListViewDemo::OListViewDemo( QWidget* parent, const char* name, WFlags f )
62 new ONamedListViewItem( item, QStringList::split( ' ', "SubText1 Text2 Text3 Text4" ) ); 66 new ONamedListViewItem( item, QStringList::split( ' ', "SubText1 Text2 Text3 Text4" ) );
63 item = new ONamedListViewItem( item, QStringList::split( ' ', "Text1 Text2 Text3 HereItComes" ) ); 67 item = new ONamedListViewItem( item, QStringList::split( ' ', "Text1 Text2 Text3 HereItComes" ) );
64 item = new ONamedListViewItem( item, QStringList::split( ' ', "Text1 Text2 Text3 HereItComesSoon" ) ); 68 item = new ONamedListViewItem( item, QStringList::split( ' ', "Text1 Text2 Text3 HereItComesSoon" ) );
65 item = new ONamedListViewItem( item, QStringList::split( ' ', "Text1 Text2 Text3 Mickey" ) ); 69 item = new ONamedListViewItem( item, QStringList::split( ' ', "Text1 Text2 Text3 Mickey" ) );
66 70
67 if ( lv->find( 3, "Mickey", 3 ) ) 71 if ( lv->find( 3, "Mickey", 3 ) )
68 qDebug( "found Mickey :-)" ); 72 odebug << "found Mickey :-)" << oendl;
69 else 73 else
70 qDebug( "did not found Mickey :-(" ); 74 odebug << "did not found Mickey :-(" << oendl;
71 75
72 if ( lv->find( 3, "Minni", 0 ) ) 76 if ( lv->find( 3, "Minni", 0 ) )
73 qDebug( "found Minni :-)" ); 77 odebug << "found Minni :-)" << oendl;
74 else 78 else
75 qDebug( "did not found Minni :-(" ); 79 odebug << "did not found Minni :-(" << oendl;
76 80
77} 81}
78 82
79OListViewDemo::~OListViewDemo() 83OListViewDemo::~OListViewDemo()
80{ 84{
81} 85}