hi,

when i compile this code using Qt and run this application on Ubuntu, the up and down arrows are visible and they look proper, but when i compile same code for Qtopia and i run it on IDU the arrows are no more look like arrow.

#include <QWidget>
#include <QLineEdit>
#include <QScrollBar>
#include <QCleanlooksStyle>
#include <QApplication>

int main( int argc, char* argv[] )
{
QApplication app( argc, argv );

QWidget window( 0 );
QScrollBar scrollBar( &window );



//QLineEdit lineEdit( &window );

scrollBar.show();
QCleanlooksStyle style;
scrollBar.setStyle( &style );
scrollBar.setFixedSize( 30, 100 );

//lineEdit.show();
window.show();

return app.exec();
}
i want that on IDU the arrow should be properly visible, can any body have any knowladge how to solve this problem ??