Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Qt version used in qubesmanager to Qt5 #178

Merged
merged 1 commit into from
Aug 28, 2019

Conversation

marmarta
Copy link
Member

Fixed dependencies, places where obsolete functions stopped working,
code fragments that started throwing warnings and an .ui file that
stopped being readable after the update.

self.tr("You need to fill service "
"name/port for TCP/UDP rule"))
return
QtGui.QDialog.accept(self)
QtWidgets.QDialog.accept(self)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this should be super().accept()


self.__init_log_text__()

def __init_log_text__(self):
print(self.log_path)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Leftover debug.

@@ -62,16 +63,18 @@ def __init_log_text__(self):
else:
log.seek(0, os.SEEK_SET)
self.displayed_text += log.read()
print(self.displayed_text)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Leftover debug.

@@ -35,8 +34,7 @@
from . import multiselectwidget
from . import backup_utils

from multiprocessing import Queue
from multiprocessing.queues import Empty
import queue
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

queue.Queue is different from multiprocessing.Queue. According to documentation, the former works with threads, but not necessary with processes. Any specific reason for this change?

Fixed dependencies, places where obsolete functions stopped working,
code fragments that started throwing warnings and an .ui file that
stopped being readable after the update.
@marmarek marmarek merged commit e79724f into QubesOS:master Aug 28, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants