summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2013-01-08 12:24:16 +0000
committerMichael Palimaka <kensington@gentoo.org>2013-01-08 12:24:16 +0000
commit484a42db0d7d084ae345371fa34476932c241aab (patch)
tree80cefb129bd8f3be345edefc24ef399505284870 /kde-base/konqueror/files
parentAdd hppa/fpu fix from Guy Martin #450676 by Jeroen Roovers. (diff)
downloadhistorical-484a42db0d7d084ae345371fa34476932c241aab.tar.gz
historical-484a42db0d7d084ae345371fa34476932c241aab.tar.bz2
historical-484a42db0d7d084ae345371fa34476932c241aab.zip
Remove unused patches.
Package-Manager: portage-2.1.11.38/cvs/Linux x86_64 Manifest-Sign-Key: 0x675D0D2C
Diffstat (limited to 'kde-base/konqueror/files')
-rw-r--r--kde-base/konqueror/files/konqueror-4.9.1-focus.patch43
1 files changed, 0 insertions, 43 deletions
diff --git a/kde-base/konqueror/files/konqueror-4.9.1-focus.patch b/kde-base/konqueror/files/konqueror-4.9.1-focus.patch
deleted file mode 100644
index 4fdbdb0679cf..000000000000
--- a/kde-base/konqueror/files/konqueror-4.9.1-focus.patch
+++ /dev/null
@@ -1,43 +0,0 @@
-commit 5fa3dbc49f8cac8253e198298948832ca7d38674
-Author: Dawit Alemayehu <adawit@kde.org>
-Date: Wed Sep 5 03:14:52 2012 -0400
-
- Fix commit a2ae8003352442efdb5731b3fd3de3107b0c1e99. :(
-
- Do not attempt to change focus when the active view is not the current one.
- Fixes location bar address being changed when opening URLs in a background tab.
-
-diff --git a/konqueror/src/konqview.cpp b/konqueror/src/konqview.cpp
-index 0130292..2ee9896 100644
---- a/konqueror/src/konqview.cpp
-+++ b/konqueror/src/konqview.cpp
-@@ -518,19 +518,20 @@ void KonqView::slotRequestFocus( KParts::ReadOnlyPart * )
- void KonqView::setLoading( bool loading, bool hasPending /*= false*/)
- {
- //kDebug() << "loading=" << loading << "hasPending=" << hasPending;
-- if (loading) {
-+ m_bLoading = loading;
-+ m_bPendingRedirection = hasPending;
-+ if ( m_pMainWindow->currentView() == this ) {
-+ m_pMainWindow->updateToolBarActions( hasPending );
- // Make sure the focus is restored on the part's widget and not the combo
- // box if it starts loading a request. See #304933.
-- QWidget* partWidget = (m_pPart ? m_pPart->widget() : 0);
-- if (partWidget && !partWidget->hasFocus()) {
-- //kDebug() << "SET FOCUS on the widget";
-- partWidget->setFocus();
-+ if (loading) {
-+ QWidget* partWidget = (m_pPart ? m_pPart->widget() : 0);
-+ if (partWidget && !partWidget->hasFocus()) {
-+ //kDebug() << "SET FOCUS on the widget";
-+ partWidget->setFocus();
-+ }
- }
- }
-- m_bLoading = loading;
-- m_bPendingRedirection = hasPending;
-- if ( m_pMainWindow->currentView() == this )
-- m_pMainWindow->updateToolBarActions( hasPending );
-
- m_pMainWindow->viewManager()->setLoading( this, loading || hasPending );
- }