//! QHeader + QIconSet + BiDi + KDE = bug

#include <kcmdlineargs.h>
#include <kaboutdata.h>
#include <kapplication.h>
#include <klocale.h>

#include <qlistview.h>
#include <qheader.h>
#include <qiconset.h>
#include <qpixmap.h>

int main(int argc, char **argv) {
  KAboutData about( "hello", I18N_NOOP("a hellow world application"), 
		    "0.1", "Bug demo", KAboutData::License_GPL, 
		    "(C) 2006 Chen Levy", 0, 0, "contirb@chenlevy.com") ;
  KCmdLineArgs::init( argc, argv, &about) ;
  
  KApplication app( argv, argc) ;

  QIconSet icon( QPixmap( "icon.png")) ;
  QListView* lv= new QListView() ;
  lv->addColumn( icon, i18n("Hello, world!")) ;
  app.setMainWidget( lv) ;
  lv->show() ;

  return app.exec() ;
}

