From 368b58bb299671fd3c2634deb854db0158f15aad Mon Sep 17 00:00:00 2001 From: abs62 Date: Wed, 30 Mar 2011 08:47:55 +0400 Subject: [PATCH] Command "Clear history" really clear saved history --- mainwindow.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/mainwindow.cc b/mainwindow.cc index 01f12be2..d70868ee 100644 --- a/mainwindow.cc +++ b/mainwindow.cc @@ -1813,6 +1813,7 @@ void MainWindow::menuHistoryTriggered( QAction * action ) void MainWindow::on_clearHistory_activated() { history.clear(); + history.save(); } void MainWindow::setAutostart(bool autostart)