diff --git a/README.md b/README.md index ca76dbaf..bbdd05c9 100644 --- a/README.md +++ b/README.md @@ -462,7 +462,7 @@ MainWindow::MainWindow(QWidget *parent) : // Create the dock manager after the ui is setup. Because the // parent parameter is a QMainWindow the dock manager registers // itself as the central widget as such the ui must be set up first. - m_DockManager = new ads::CDockManager(this); + DockManager = new ads::CDockManager(this); // Create example content label - this can be any application specific // widget @@ -473,7 +473,7 @@ MainWindow::MainWindow(QWidget *parent) : // Create a dock widget with the title Label 1 and set the created label // as the dock widget content - ads::CDockWidget* DockWidget = new ads::CDockWidget("Label 1"); + ads::CDockWidget* DockWidget = DockManager->createDockWidget("Label 1"); DockWidget->setWidget(l); // Add the toggleViewAction of the dock widget to the menu to give @@ -481,7 +481,7 @@ MainWindow::MainWindow(QWidget *parent) : ui->menuView->addAction(DockWidget->toggleViewAction()); // Add the dock widget to the top dock widget area - m_DockManager->addDockWidget(ads::TopDockWidgetArea, DockWidget); + DockManager->addDockWidget(ads::TopDockWidgetArea, DockWidget); } MainWindow::~MainWindow()