Skip to content
Snippets Groups Projects
Commit 4fbc6170 authored by Lan Dam's avatar Lan Dam
Browse files

change QAction, QActionGroup, QShortcut to import from QtGui

parent e6d56b6a
No related branches found
No related tags found
1 merge request!155Convert pyside6
from PySide6.QtCore import Qt, QDate
from PySide6.QtGui import (
QKeyEvent, QWheelEvent, QContextMenuEvent,
QKeyEvent, QWheelEvent, QContextMenuEvent, QAction
)
from PySide6.QtWidgets import (
QDateEdit, QLineEdit, QMenu, QAction,
QDateEdit, QLineEdit, QMenu,
)
......
from PySide6 import QtCore
from PySide6.QtGui import (
QContextMenuEvent, QGuiApplication, QKeySequence,
QKeyEvent,
QKeyEvent, QAction
)
from PySide6.QtWidgets import QListWidget, QMenu, QAction
from PySide6.QtWidgets import QListWidget, QMenu
class FileInfoWidget(QListWidget):
......
......@@ -6,9 +6,11 @@ from typing import Union, List, Optional
from PySide6 import QtCore, QtGui, QtWidgets
from PySide6.QtWidgets import (
QMainWindow, QWidget, QTextBrowser, QPushButton, QLineEdit, QDateEdit,
QListWidget, QCheckBox, QRadioButton, QMenu, QAction, QLabel, QFrame,
QVBoxLayout, QHBoxLayout, QGridLayout, QAbstractItemView, QShortcut,
QActionGroup, QButtonGroup,
QListWidget, QCheckBox, QRadioButton, QMenu, QLabel, QFrame,
QVBoxLayout, QHBoxLayout, QGridLayout, QAbstractItemView, QButtonGroup,
)
from PySide6.QtGui import (
QAction, QActionGroup, QShortcut
)
from sohstationviewer.view.calendar.calendar_widget import CalendarWidget
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment