Plugins/VcsPlugins/vcsPySvn/SvnDialogMixin.py

branch
5_3_x
changeset 2735
d40057b69abb
parent 2302
f29e9405c851
child 2791
a9577f248f04
child 3020
542e97d4ecb3
child 3163
9f50365a0870
equal deleted inserted replaced
2729:4ecb86d32f25 2735:d40057b69abb
59 by subversion, username and password contain the relevant data 59 by subversion, username and password contain the relevant data
60 as strings and save is a flag indicating, that username and 60 as strings and save is a flag indicating, that username and
61 password should be saved. 61 password should be saved.
62 """ 62 """
63 from .SvnLoginDialog import SvnLoginDialog 63 from .SvnLoginDialog import SvnLoginDialog
64 cursor = QApplication.overrideCursor() 64 cursor = QCursor(QApplication.overrideCursor())
65 if cursor is not None: 65 if cursor is not None:
66 QApplication.restoreOverrideCursor() 66 QApplication.restoreOverrideCursor()
67 parent = isinstance(self, QWidget) and self or None 67 parent = isinstance(self, QWidget) and self or None
68 dlg = SvnLoginDialog(realm, username, may_save, parent) 68 dlg = SvnLoginDialog(realm, username, may_save, parent)
69 res = dlg.exec_() 69 res = dlg.exec_()

eric ide

mercurial