Updated Vcones to QT 6

This commit is contained in:
2023-10-03 05:59:48 -04:00
parent a2278e4b63
commit 80e0dbb290
2 changed files with 7 additions and 7 deletions

View File

@ -8,9 +8,9 @@
## WARNING! All changes made in this file will be lost when recompiling UI file! ## WARNING! All changes made in this file will be lost when recompiling UI file!
################################################################################ ################################################################################
from PySide2.QtCore import * from PySide6.QtCore import *
from PySide2.QtGui import * from PySide6.QtGui import *
from PySide2.QtWidgets import * from PySide6.QtWidgets import *
class Ui_MainWindow(object): class Ui_MainWindow(object):

View File

@ -13,9 +13,9 @@ import gpxpy
import csv import csv
import yaml import yaml
from PySide2.QtGui import * from PySide6.QtGui import *
from PySide2.QtWidgets import QApplication, QMainWindow, QFileDialog from PySide6.QtWidgets import QApplication, QMainWindow, QFileDialog
from PySide2.QtCore import QObject, Slot, Signal, QThread, QDir from PySide6.QtCore import QObject, Slot, Signal, QThread, QDir
from MainWindow import Ui_MainWindow from MainWindow import Ui_MainWindow
@ -602,5 +602,5 @@ if __name__ == '__main__':
window.load_cones(config['lists']) window.load_cones(config['lists'])
window.start_thread() window.start_thread()
ret = app.exec_() ret = app.exec()
sys.exit(ret) sys.exit(ret)