modifica nomes de snake_case para camelCase
This commit is contained in:
@@ -7,8 +7,8 @@ class MainWindow(QMainWindow):
|
|||||||
|
|
||||||
# Configurando o layout básico
|
# Configurando o layout básico
|
||||||
self.cw = QWidget()
|
self.cw = QWidget()
|
||||||
self.v_layout = QVBoxLayout()
|
self.vLayout = QVBoxLayout()
|
||||||
self.cw.setLayout(self.v_layout)
|
self.cw.setLayout(self.vLayout)
|
||||||
self.setCentralWidget(self.cw)
|
self.setCentralWidget(self.cw)
|
||||||
|
|
||||||
# Título da janela
|
# Título da janela
|
||||||
@@ -20,4 +20,4 @@ class MainWindow(QMainWindow):
|
|||||||
self.setFixedSize(self.width(), self.height())
|
self.setFixedSize(self.width(), self.height())
|
||||||
|
|
||||||
def addWidgetToVLayout(self, widget: QWidget):
|
def addWidgetToVLayout(self, widget: QWidget):
|
||||||
self.v_layout.addWidget(widget)
|
self.vLayout.addWidget(widget)
|
||||||
|
|||||||
Reference in New Issue
Block a user