actions->insert("moveDown", moveDownAct);
connect(moveDownAct, SIGNAL(triggered()), mediaView, SLOT(moveDownSelected()));
- clearAct = new QAction(tr("&Clear recent keywords"), this);
+ clearAct = new QAction(tr("&Clear recent searches"), this);
clearAct->setMenuRole(QAction::ApplicationSpecificRole);
clearAct->setShortcuts(QList<QKeySequence>()
<< QKeySequence(Qt::CTRL + Qt::SHIFT + Qt::Key_Delete)
void MainWindow::clearRecentKeywords() {
QSettings settings;
settings.remove("recentKeywords");
+ settings.remove("recentChannels");
searchView->updateRecentKeywords();
+ searchView->updateRecentChannels();
statusBar()->showMessage(tr("Your privacy is now safe"));
}