Hi,

I am sub classing QMainWindow and there is a resizeEvent.
Qt Code:
  1. void resizeEvent(QResizeEvent *e);
To copy to clipboard, switch view to plain text mode 

I am also creating some QDockWidgets inside.
Qt Code:
  1. dock = new QDockWidget(tr("Attributes"), this);
To copy to clipboard, switch view to plain text mode 

How do I setup resizeEvent for dock so that it calls this->resizeEvent.

Cheers

Prashant