consistency ...
This commit is contained in:
@@ -34,14 +34,12 @@ from PyQt5.QtWidgets import (
|
|||||||
QStylePainter, QStyleOptionTab
|
QStylePainter, QStyleOptionTab
|
||||||
)
|
)
|
||||||
|
|
||||||
from nw.constants import nwUnicode
|
|
||||||
|
|
||||||
logger = logging.getLogger(__name__)
|
logger = logging.getLogger(__name__)
|
||||||
|
|
||||||
class PagedDialog(QDialog):
|
class PagedDialog(QDialog):
|
||||||
|
|
||||||
def __init__(self, parent=None):
|
def __init__(self, theParent=None):
|
||||||
QDialog.__init__(self, parent=parent)
|
QDialog.__init__(self, parent=theParent)
|
||||||
|
|
||||||
self._outerBox = QVBoxLayout()
|
self._outerBox = QVBoxLayout()
|
||||||
self._buttonBox = QHBoxLayout()
|
self._buttonBox = QHBoxLayout()
|
||||||
@@ -82,8 +80,8 @@ class PagedDialog(QDialog):
|
|||||||
|
|
||||||
class VerticalTabBar(QTabBar):
|
class VerticalTabBar(QTabBar):
|
||||||
|
|
||||||
def __init__(self, parent=None):
|
def __init__(self, theParent=None):
|
||||||
QTabBar.__init__(self, parent=parent)
|
QTabBar.__init__(self, parent=theParent)
|
||||||
return
|
return
|
||||||
|
|
||||||
def tabSizeHint(self, theIndex):
|
def tabSizeHint(self, theIndex):
|
||||||
|
|||||||
Reference in New Issue
Block a user