From 0abdad0e2955ff45311d7ebf56bd0af61f77b118 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 24 Jul 2014 18:56:45 +0530 Subject: [PATCH] ... --- manual/plugin_examples/editor_demo/main.py | 2 +- setup/qt5-migrate.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/manual/plugin_examples/editor_demo/main.py b/manual/plugin_examples/editor_demo/main.py index 8cda8c7f92..8fb4b1f03b 100644 --- a/manual/plugin_examples/editor_demo/main.py +++ b/manual/plugin_examples/editor_demo/main.py @@ -7,7 +7,7 @@ __license__ = 'GPL v3' __copyright__ = '2014, Kovid Goyal ' import re -from PyQt4.Qt import QAction, QInputDialog +from PyQt5.Qt import QAction, QInputDialog from cssutils.css import CSSRule # The base class that all tools must inherit from diff --git a/setup/qt5-migrate.py b/setup/qt5-migrate.py index 39c8e39974..8c7e95e671 100644 --- a/setup/qt5-migrate.py +++ b/setup/qt5-migrate.py @@ -8,7 +8,9 @@ __copyright__ = '2014, Kovid Goyal ' # QT5XX: Get rid of is_beta special processing in update.py -# QT5XX: Get rid of the plugin porting stat colelction in plugins_mirror.py +# QT5XX: Get rid of the plugin porting stat collection in plugins_mirror.py + +# QT5XX: Port the demo UI and editor plugin zip files on the server to Qt 5 # QT5XX: Delete this file after migration is completed