author | zecke <zecke> | 2004-03-26 22:36:43 (UTC) |
---|---|---|
committer | zecke <zecke> | 2004-03-26 22:36:43 (UTC) |
commit | c54a3c8cc47258743381d4dee4200304d247182d (patch) (side-by-side diff) | |
tree | bc96497821743c7b7789004fd700f58f10f0f772 /libopie2 | |
parent | 2487838d0f9358d6efdf714e9dfd892f92802b46 (diff) | |
download | opie-c54a3c8cc47258743381d4dee4200304d247182d.zip opie-c54a3c8cc47258743381d4dee4200304d247182d.tar.gz opie-c54a3c8cc47258743381d4dee4200304d247182d.tar.bz2 |
Add WFlags to the c'tor so we eventually can use this
in the designer... but anyway making it more consistent with Qt
Ah and this is binary incompatible but the API isn't marked as stable
anyway
-rw-r--r-- | libopie2/opieui/olistview.cpp | 4 | ||||
-rw-r--r-- | libopie2/opieui/olistview.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libopie2/opieui/olistview.cpp b/libopie2/opieui/olistview.cpp index 38670b4..d7c92fd 100644 --- a/libopie2/opieui/olistview.cpp +++ b/libopie2/opieui/olistview.cpp @@ -44,10 +44,10 @@ namespace Ui { /*====================================================================================== * OListView *======================================================================================*/ -OListView::OListView( QWidget *parent, const char *name ) - :QListView( parent, name ) +OListView::OListView( QWidget *parent, const char *name, WFlags fl ) + :QListView( parent, name, fl ) { //FIXME: get from global settings and calculate ==> see oglobalsettings.* m_alternateBackground = QColor( 238, 246, 255 ); diff --git a/libopie2/opieui/olistview.h b/libopie2/opieui/olistview.h index 8195a62..3ff11ef 100644 --- a/libopie2/opieui/olistview.h +++ b/libopie2/opieui/olistview.h @@ -64,9 +64,9 @@ class OListView: public QListView * * The parameters @a parent and @a name are handled by * @ref QListView, as usual. */ - OListView( QWidget* parent = 0, const char* name = 0 ); + OListView( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 ); /** * Destructor. */ virtual ~OListView(); |