Hi

I am using Qt 4.6.4 On MacOSX.

I am using QDockWidget to the Bottom Area, But it is always come in the Left side of Bottom Area.

Some sample code is:

QDockWidget m_pDockWidget = new QDockWidget(this,Qt:rawer);
MainWindowDockWdgt *m_pMainWindowWdgt = new MainWindowDockWdgt(this);
m_pDockWidget->setFixedWidth(750);
m_pDockWidget->setFixedHeight(220);
m_pDockWidget->setWidget(m_pMainWindowWdgt);
this->addDockWidget(Qt::BottomDockWidgetArea,m_pDockWid get);

I want to show Dock in Right side of Bottom Area of QMainWindow..Can you please tell me the solution.
Can I use setCorner method of QMainWindow.. But it it not working...Can u tell where I am lacking...

Thanks
Santosh