summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--python/examples/triage/byte.py6
-rw-r--r--python/examples/triage/entropy.py6
-rw-r--r--python/examples/triage/exports.py4
-rw-r--r--python/examples/triage/files.py6
-rw-r--r--python/examples/triage/headers.py4
-rw-r--r--python/examples/triage/imports.py4
-rw-r--r--python/examples/triage/sections.py2
-rw-r--r--python/examples/triage/view.py4
8 files changed, 18 insertions, 18 deletions
diff --git a/python/examples/triage/byte.py b/python/examples/triage/byte.py
index 6a3a9a10..73d909d2 100644
--- a/python/examples/triage/byte.py
+++ b/python/examples/triage/byte.py
@@ -1,9 +1,9 @@
# coding: utf8
import sys
-from PySide2.QtWidgets import QAbstractScrollArea, QAbstractSlider
-from PySide2.QtGui import QPainter, QPalette, QFont
-from PySide2.QtCore import Qt, QTimer, QRect
+from PySide6.QtWidgets import QAbstractScrollArea, QAbstractSlider
+from PySide6.QtGui import QPainter, QPalette, QFont
+from PySide6.QtCore import Qt, QTimer, QRect
import binaryninjaui
from binaryninjaui import View, ViewType, RenderContext, UIContext, UIAction
from binaryninja.enums import LinearDisassemblyLineType, ThemeColor
diff --git a/python/examples/triage/entropy.py b/python/examples/triage/entropy.py
index 3ce2de11..3b24a9ba 100644
--- a/python/examples/triage/entropy.py
+++ b/python/examples/triage/entropy.py
@@ -1,8 +1,8 @@
import math
import threading
-from PySide2.QtWidgets import QWidget
-from PySide2.QtGui import QImage, QColor, QPainter
-from PySide2.QtCore import Qt, QSize, QTimer
+from PySide6.QtWidgets import QWidget
+from PySide6.QtGui import QImage, QColor, QPainter
+from PySide6.QtCore import Qt, QSize, QTimer
import binaryninjaui
from binaryninjaui import ViewFrame, UIContext
from binaryninja.enums import ThemeColor
diff --git a/python/examples/triage/exports.py b/python/examples/triage/exports.py
index c72baa19..730b37df 100644
--- a/python/examples/triage/exports.py
+++ b/python/examples/triage/exports.py
@@ -1,5 +1,5 @@
-from PySide2.QtWidgets import QTreeView, QVBoxLayout, QWidget
-from PySide2.QtCore import Qt, QAbstractItemModel, QModelIndex, QSize
+from PySide6.QtWidgets import QTreeView, QVBoxLayout, QWidget
+from PySide6.QtCore import Qt, QAbstractItemModel, QModelIndex, QSize
from binaryninja.enums import SymbolType, SymbolBinding
import binaryninjaui
from binaryninjaui import ViewFrame, FilterTarget, FilteredView, UIContext, UIActionHandler
diff --git a/python/examples/triage/files.py b/python/examples/triage/files.py
index ad8a26cd..e293af57 100644
--- a/python/examples/triage/files.py
+++ b/python/examples/triage/files.py
@@ -1,7 +1,7 @@
import os
-from PySide2.QtWidgets import QWidget, QTreeView, QFileSystemModel, QVBoxLayout, QMessageBox, QAbstractItemView
-from PySide2.QtGui import QKeySequence
-from PySide2.QtCore import QSettings, QDir
+from PySide6.QtWidgets import QWidget, QTreeView, QFileSystemModel, QVBoxLayout, QMessageBox, QAbstractItemView
+from PySide6.QtGui import QKeySequence
+from PySide6.QtCore import QSettings, QDir
from binaryninjaui import UIActionHandler, UIAction, Menu, FileContext, ContextMenuManager, UIContext
from binaryninja.settings import Settings
diff --git a/python/examples/triage/headers.py b/python/examples/triage/headers.py
index 0c87518d..0f2fd6de 100644
--- a/python/examples/triage/headers.py
+++ b/python/examples/triage/headers.py
@@ -3,8 +3,8 @@ from binaryninja.binaryview import StructuredDataView
import binaryninjaui
from binaryninjaui import ViewFrame, UIContext
from binaryninja.enums import ThemeColor
-from PySide2.QtWidgets import QWidget, QLabel, QGridLayout
-from PySide2.QtGui import QPalette
+from PySide6.QtWidgets import QWidget, QLabel, QGridLayout
+from PySide6.QtGui import QPalette
class ClickableLabel(QLabel):
diff --git a/python/examples/triage/imports.py b/python/examples/triage/imports.py
index 3e09b93d..09477bff 100644
--- a/python/examples/triage/imports.py
+++ b/python/examples/triage/imports.py
@@ -1,5 +1,5 @@
-from PySide2.QtWidgets import QTreeView, QVBoxLayout, QWidget, QPushButton
-from PySide2.QtCore import Qt, QAbstractItemModel, QModelIndex, QSize
+from PySide6.QtWidgets import QTreeView, QVBoxLayout, QWidget, QPushButton
+from PySide6.QtCore import Qt, QAbstractItemModel, QModelIndex, QSize
from binaryninja.mediumlevelil import MediumLevelILOperation
from binaryninja.function import RegisterValueType
from binaryninja.enums import SymbolType, FunctionAnalysisSkipOverride
diff --git a/python/examples/triage/sections.py b/python/examples/triage/sections.py
index b18f5f28..b4b37461 100644
--- a/python/examples/triage/sections.py
+++ b/python/examples/triage/sections.py
@@ -1,6 +1,6 @@
# coding: utf8
-from PySide2.QtWidgets import QWidget, QLabel, QGridLayout, QHBoxLayout
+from PySide6.QtWidgets import QWidget, QLabel, QGridLayout, QHBoxLayout
from binaryninja.enums import SectionSemantics
import binaryninjaui
from binaryninjaui import ViewFrame, UIContext
diff --git a/python/examples/triage/view.py b/python/examples/triage/view.py
index fcc5bf4d..e4f60df0 100644
--- a/python/examples/triage/view.py
+++ b/python/examples/triage/view.py
@@ -3,8 +3,8 @@ import binaryninjaui
from binaryninja.settings import Settings
from binaryninja import log
from binaryninjaui import View, ViewType, UIContext, ViewFrame
-from PySide2.QtWidgets import QScrollArea, QWidget, QVBoxLayout, QHBoxLayout, QPushButton, QGroupBox, QSplitter
-from PySide2.QtCore import Qt
+from PySide6.QtWidgets import QScrollArea, QWidget, QVBoxLayout, QHBoxLayout, QPushButton, QGroupBox, QSplitter
+from PySide6.QtCore import Qt
from . import headers
from . import entropy
from . import imports