--- a/eric6/QScintilla/EditorOutline.py Mon Mar 01 17:48:43 2021 +0100 +++ b/eric6/QScintilla/EditorOutline.py Tue Mar 02 17:17:09 2021 +0100 @@ -48,17 +48,18 @@ self.setAlternatingRowColors(True) header = self.header() - header.setSortIndicator(0, Qt.AscendingOrder) + header.setSortIndicator(0, Qt.SortOrder.AscendingOrder) header.setSortIndicatorShown(True) header.setSectionsClickable(True) self.setHeaderHidden(True) self.setSortingEnabled(True) - self.setSelectionMode(QAbstractItemView.SingleSelection) - self.setSelectionBehavior(QAbstractItemView.SelectRows) + self.setSelectionMode(QAbstractItemView.SelectionMode.SingleSelection) + self.setSelectionBehavior( + QAbstractItemView.SelectionBehavior.SelectRows) - self.setContextMenuPolicy(Qt.CustomContextMenu) + self.setContextMenuPolicy(Qt.ContextMenuPolicy.CustomContextMenu) self.customContextMenuRequested.connect(self.__contextMenuRequested) self.__createPopupMenus()