Name changes

This commit is contained in:
ByteDream 2021-03-09 00:19:55 +01:00
parent 1e78728291
commit 7cae8d2ae5
2 changed files with 21 additions and 21 deletions

View File

@ -19,8 +19,8 @@ NOTE: Not every emoji looks "nice" in PyQt5 so you may have to install a custom
</details>
```python
from PyQt5 import QtWidgets # import pyqt5
from QOptionObjects import QEmojiPicker # import the emoji picker
from PyQt5 import QtWidgets # import pyqt5
from QCustomObjects import QEmojiPicker # import the emoji picker
if __name__ == '__main__':
# create a new app
@ -49,8 +49,8 @@ A hydrodynamic layout which rearranges the items in it dynamically if its resize
</details>
```python
from PyQt5 import QtWidgets # import pyqt5
from QOptionObjects import QFlowLayout # import the flow layout
from PyQt5 import QtWidgets # import pyqt5
from QCustomObjects import QFlowLayout # import the flow layout
if __name__ == '__main__':
# create a new app
@ -82,8 +82,8 @@ A simple toggle switch
</details>
```python
from PyQt5 import QtWidgets # import pyqt5
from QOptionObjects import QSwitch # import the switch
from PyQt5 import QtWidgets # import pyqt5
from QCustomObjects import QSwitch # import the switch
if __name__ == '__main__':
# create a new app
@ -114,8 +114,8 @@ A widget where you can create, delete and edit tags
</details>
```python
from PyQt5 import QtWidgets # import pyqt5
from QOptionObjects import QTagEdit # import the tag edit
from PyQt5 import QtWidgets # import pyqt5
from QCustomObjects import QTagEdit # import the tag edit
if __name__ == '__main__':
# create a new app