diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-02-20 18:05:22 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-02-20 18:05:22 +0100 |
commit | f168eab1529acb33d48857e29c6ddf22a626f41b (patch) | |
tree | 6ca6560eae443ba846cf1ba46b2ecb3eef1a3735 | |
parent | typo (diff) | |
download | rekonq-f168eab1529acb33d48857e29c6ddf22a626f41b.tar.xz |
On the street to SingleRekonq..
-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(); |