I changed the dateListView.cpp to the following...BUT i am still not able to edit all the propertys of a QListWidget in Designer.



Qt Code:
  1. dateViewList :: dateViewList( QWidget* parent )
  2. : QListWidget(parent)
  3. {
  4. }
To copy to clipboard, switch view to plain text mode 

So i am wondering is this part right in the customwidgetplugin.cpp
Qt Code:
  1. QListWidget *createWidget(QWidget*parent){returnnewdateListWidget()
  2. };
To copy to clipboard, switch view to plain text mode 
Or should it be
Qt Code:
  1. QWidget* createWidget(QWidget *parent){return new dateListWidget()}
To copy to clipboard, switch view to plain text mode 
Or even
Qt Code:
  1. dateListView* createWidget(QWidget *parent){return new dateListWidget() }
To copy to clipboard, switch view to plain text mode