diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2008-12-06 23:42:30 +0100 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2008-12-06 23:42:30 +0100 |
commit | 3349db61eed34e3c1fb274d66ac55405fa188fdc (patch) | |
tree | d663222a255d9f14743a19cba7f96ddda9979dd4 /src/browsermainwindow.cpp | |
parent | Fixed Window Icon (diff) | |
download | rekonq-3349db61eed34e3c1fb274d66ac55405fa188fdc.tar.xz |
Fixed crash when closing rekonq with more than one tab
Diffstat (limited to 'src/browsermainwindow.cpp')
-rw-r--r-- | src/browsermainwindow.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/browsermainwindow.cpp b/src/browsermainwindow.cpp index 3be8adf3..4f242225 100644 --- a/src/browsermainwindow.cpp +++ b/src/browsermainwindow.cpp @@ -162,7 +162,8 @@ QByteArray BrowserMainWindow::saveState(bool withTabs) const stream << size(); // stream << !( statusBar()->isHidden() ); FIXME if (withTabs) - stream << tabWidget()->saveState(); +// stream << tabWidget()->saveState(); + ; else stream << QByteArray(); return data; |