migrate from PyQt6 to PySide6, remove unneeded dependencies

This commit is contained in:
2025-06-17 16:21:56 +02:00
parent c3d9daa1b0
commit 7eb55c21d0
101 changed files with 898 additions and 464 deletions

View File

@@ -1,15 +1,13 @@
from .widget_sources.calendar_entry_ui import Ui_Dialog
from PyQt6 import QtWidgets
from PyQt6.QtCore import pyqtSignal
from PySide6 import QtWidgets
from PySide6.QtCore import Signal
from src.backend.database import Database
from src import Icon
class CalendarEntry(QtWidgets.QDialog, Ui_Dialog):
deleteSignal = pyqtSignal(
int
) # when emit, send the id of the message to be deleted
repaintSignal = pyqtSignal(str)
deleteSignal = Signal(int) # when emit, send the id of the message to be deleted
repaintSignal = Signal(str)
def __init__(self, parent=None, messages=None, date=None):
super().__init__(parent)