summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
authorAndrea Diamantini <adjam7@gmail.com>2009-10-02 00:37:22 +0200
committerAndrea Diamantini <adjam7@gmail.com>2009-10-02 00:37:22 +0200
commitf4d682fe3b5994af0ecdcb5e656ba3f782f59d59 (patch)
tree1475e988af1bab05ced6e4f8abb76d4100a3490e /src/mainwindow.cpp
parentChanging page layout (more to come..) (diff)
downloadrekonq-f4d682fe3b5994af0ecdcb5e656ba3f782f59d59.tar.xz
preferred --> favorites
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 4ac97e3c..b7996a3a 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -363,10 +363,10 @@ void MainWindow::setupActions()
bmMenu->setDelayed(false);
actionCollection()->addAction(QLatin1String("bookmarksActionMenu"), bmMenu);
- // Add to preferred
- a = new KAction(KIcon("rating"), i18n("Add to Preferred"), this);
- actionCollection()->addAction(QLatin1String("add_to_preferred"), a);
- connect(a, SIGNAL(triggered(bool)), this, SLOT(addPreferredLink()));
+ // Add to favorites
+ a = new KAction(KIcon("rating"), i18n("Add to Favorites"), this);
+ actionCollection()->addAction(QLatin1String("add_to_favorites"), a);
+ connect(a, SIGNAL(triggered(bool)), this, SLOT(addFavoriteLink()));
}
@@ -1048,7 +1048,7 @@ void MainWindow::slotOpenActionUrl(QAction *action)
}
-void MainWindow::addPreferredLink()
+void MainWindow::addFavoriteLink()
{
QString name = currentTab()->title();
QString url = currentTab()->url().pathOrUrl();