diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2009-02-20 19:06:41 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2009-02-20 19:06:41 +0100 |
commit | 75310e79287a8bdffb86cc1dfda1a0f069383cd6 (patch) | |
tree | ba1fb4c201fb38d0f978fd45e8bef0711f3035ee /src/mainwindow.cpp | |
parent | On the street to SingleRekonq.. (diff) | |
download | rekonq-75310e79287a8bdffb86cc1dfda1a0f069383cd6.tar.xz |
Last commit before branching "di brutto"..
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r-- | src/mainwindow.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index 213d3a84..07b0fb9c 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -65,9 +65,12 @@ MainWindow::MainWindow() : KXmlGuiWindow() - , m_view( new MainView(this) ) - , m_bookmarksProvider( new BookmarksProvider(this) ) + , m_view(0) + , m_bookmarksProvider(0) { + m_view = new MainView(this); + m_bookmarksProvider = new BookmarksProvider(this); + // accept dnd setAcceptDrops(true); |