Merge pull request #2 from luzpaz/typos

Fix trivial typos
This commit is contained in:
Suzanne Soy 2022-01-26 16:59:03 +00:00 committed by GitHub
commit 9ca2d79859
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ class SearchBox(QtGui.QLineEdit):
maxVisibleRows = self.maxVisibleRows
# The following block of code is executed by the lightweight proxy SearchBoxLight
'''
# Call parent cosntructor
# Call parent constructor
super(SearchBoxLight, self).__init__(parent)
# Connect signals and slots
self.textChanged.connect(self.filterModel)

View File

@ -13,7 +13,7 @@ class SearchBoxLight(QtGui.QLineEdit):
self.getItemDelegate = getItemDelegate
self.maxVisibleRows = maxVisibleRows
# Call parent cosntructor
# Call parent constructor
super(SearchBoxLight, self).__init__(parent)
# Connect signals and slots
self.textChanged.connect(self.filterModel)