diff options
author | A. Maitland Bottoms <bottoms@debian.org> | 2020-11-21 14:05:53 -0500 |
---|---|---|
committer | Marcus Müller <marcus@hostalia.de> | 2020-12-18 18:19:05 +0100 |
commit | af408c76d0e4993e71a91051ed09c923749c6383 (patch) | |
tree | b421d86582c7cbd5122e02e8df218cbd567fe199 /gr-utils/plot_tools/pyqt_plot.py | |
parent | ab178dbc86fc1dd7c78dcb59c9aabc19ac52fc0b (diff) |
more qt4 qt5 updates
Have additional apps, examples, and tools use Qt5 instead of Qt4.
Diffstat (limited to 'gr-utils/plot_tools/pyqt_plot.py')
-rw-r--r-- | gr-utils/plot_tools/pyqt_plot.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-utils/plot_tools/pyqt_plot.py b/gr-utils/plot_tools/pyqt_plot.py index bec30c32ad..2d4df6c5a7 100644 --- a/gr-utils/plot_tools/pyqt_plot.py +++ b/gr-utils/plot_tools/pyqt_plot.py @@ -6,7 +6,7 @@ # # WARNING! All changes made in this file will be lost! -from PyQt4 import QtCore, QtGui +from PyQt5 import QtCore, QtGui try: _fromUtf8 = QtCore.QString.fromUtf8 @@ -268,4 +268,4 @@ class Ui_MainWindow(object): self.action_exit.setText(_translate("MainWindow", "E&xit", None)) self.action_reload.setText(_translate("MainWindow", "&Reload", None)) -from PyQt4 import Qwt5 +from PyQt5 import Qwt |