diff options
author | Andrea Diamantini <adjam7@gmail.com> | 2010-06-24 19:52:49 +0200 |
---|---|---|
committer | Andrea Diamantini <adjam7@gmail.com> | 2010-06-24 19:52:49 +0200 |
commit | f3ab2ac51893a7e665e2f20f428325af1b172cc2 (patch) | |
tree | 5473381645d564e34927fa73b2c74f5eb3bbe6ec /src/history/historypanel.cpp | |
parent | Merge commit 'refs/merge-requests/142' of git://gitorious.org/rekonq/mainline... (diff) | |
download | rekonq-f3ab2ac51893a7e665e2f20f428325af1b172cc2.tar.xz |
Fix naming to clean API
SettingOpenTab --> NewTab (according to settings)
NewCurrentTab --> NewFocusedTab
Diffstat (limited to 'src/history/historypanel.cpp')
-rw-r--r-- | src/history/historypanel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/history/historypanel.cpp b/src/history/historypanel.cpp index a030676d..b9e7b10b 100644 --- a/src/history/historypanel.cpp +++ b/src/history/historypanel.cpp @@ -195,6 +195,6 @@ void HistoryPanel::openAll() } for (int i = 0; i < allChild.length(); i++) - emit openUrl(allChild.at(i).url(), Rekonq::SettingOpenTab); + emit openUrl(allChild.at(i).url(), Rekonq::NewTab); } |