summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2017-02-19 13:23:45 +0100
committerAndreas Sturmlechner <asturm@gentoo.org>2017-02-19 15:45:28 +0100
commit9cafc514db126ff0c9cfdd044e6eccaa8088292e (patch)
tree02894eb872110c196c58c1ad23d7d050bc588af3 /sci-geosciences/qgis/files
parentsci-geosciences/qgis: Fix QtWebKit automagic (diff)
downloadgentoo-9cafc514db126ff0c9cfdd044e6eccaa8088292e.tar.gz
gentoo-9cafc514db126ff0c9cfdd044e6eccaa8088292e.tar.bz2
gentoo-9cafc514db126ff0c9cfdd044e6eccaa8088292e.zip
sci-geosciences/qgis: Drop old
Package-Manager: portage-2.3.3
Diffstat (limited to 'sci-geosciences/qgis/files')
-rw-r--r--sci-geosciences/qgis/files/qgis-2.12.0-no-pyqtconfig.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/sci-geosciences/qgis/files/qgis-2.12.0-no-pyqtconfig.patch b/sci-geosciences/qgis/files/qgis-2.12.0-no-pyqtconfig.patch
deleted file mode 100644
index 24fe7bff6cfa..000000000000
--- a/sci-geosciences/qgis/files/qgis-2.12.0-no-pyqtconfig.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-diff -ur qgis-2.12.0.orig/python/console/console.py qgis-2.12.0/python/console/console.py
---- qgis-2.12.0.orig/python/console/console.py
-+++ qgis-2.12.0/python/console/console.py
-@@ -25,7 +25,6 @@
- QSplitter, QTreeWidget, QAction, QFileDialog, QCheckBox, QSizePolicy, QMenu, QGridLayout, QApplication, \
- QDesktopServices
- from PyQt4.QtGui import QVBoxLayout
--from PyQt4 import pyqtconfig
- from qgis.utils import iface
- from console_sci import ShellScintilla
- from console_output import ShellOutputScintilla
-@@ -482,10 +481,7 @@
- self.lineEditFind = QgsFilterLineEdit()
- placeHolderTxt = QCoreApplication.translate("PythonConsole", "Enter text to find...")
-
-- if pyqtconfig.Configuration().qt_version >= 0x40700:
-- self.lineEditFind.setPlaceholderText(placeHolderTxt)
-- else:
-- self.lineEditFind.setToolTip(placeHolderTxt)
-+ self.lineEditFind.setPlaceholderText(placeHolderTxt)
- self.findNextButton = QToolButton()
- self.findNextButton.setEnabled(False)
- toolTipfindNext = QCoreApplication.translate("PythonConsole", "Find Next")