diff options
-rw-r--r-- | src/application.cpp | 1 | ||||
-rw-r--r-- | src/mainwindow.cpp | 2 | ||||
-rw-r--r-- | src/mainwindow.h | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/src/application.cpp b/src/application.cpp index d6679b97..889ec51f 100644 --- a/src/application.cpp +++ b/src/application.cpp @@ -110,6 +110,7 @@ Application::Application() Application::~Application() { + delete m_mainWindow; delete s_networkAccessManager; } diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 91ee8028..213d3a84 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -145,6 +145,8 @@ MainWindow::MainWindow() MainWindow::~MainWindow() { + delete m_view; + delete m_bookmarksProvider; } diff --git a/src/mainwindow.h b/src/mainwindow.h index fa96eb0e..1a1d14d1 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -86,7 +86,6 @@ private slots: void slotSwapFocus();*/ - // File Menu slots void slotFileNew(); void slotFileOpen(); |