Sat, 25 Jun 2022 17:55:41 +0200
Compatibility fixes for rope >= 1.2.0.
<?xml version="1.0" encoding="UTF-8"?> <ui version="4.0"> <class>ErrorDialog</class> <widget class="QDialog" name="ErrorDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>500</width> <height>400</height> </rect> </property> <property name="sizePolicy"> <sizepolicy hsizetype="Fixed" vsizetype="Minimum"> <horstretch>0</horstretch> <verstretch>0</verstretch> </sizepolicy> </property> <property name="windowTitle"> <string/> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout" name="verticalLayout"> <property name="sizeConstraint"> <enum>QLayout::SetFixedSize</enum> </property> <item> <widget class="QLabel" name="errorMessageLabel"> <property name="text"> <string/> </property> <property name="wordWrap"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QPushButton" name="tracebackButton"> <property name="minimumSize"> <size> <width>480</width> <height>0</height> </size> </property> <property name="text"> <string>Traceback</string> </property> <property name="checkable"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QPlainTextEdit" name="tracebackEdit"> <property name="tabChangesFocus"> <bool>true</bool> </property> <property name="lineWrapMode"> <enum>QPlainTextEdit::NoWrap</enum> </property> <property name="readOnly"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QDialogButtonBox" name="buttonBox"> <property name="orientation"> <enum>Qt::Horizontal</enum> </property> <property name="standardButtons"> <set>QDialogButtonBox::Close</set> </property> </widget> </item> </layout> </widget> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>accepted()</signal> <receiver>ErrorDialog</receiver> <slot>accept()</slot> <hints> <hint type="sourcelabel"> <x>227</x> <y>385</y> </hint> <hint type="destinationlabel"> <x>157</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>ErrorDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>295</x> <y>391</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> <connection> <sender>tracebackButton</sender> <signal>toggled(bool)</signal> <receiver>tracebackEdit</receiver> <slot>setVisible(bool)</slot> <hints> <hint type="sourcelabel"> <x>143</x> <y>47</y> </hint> <hint type="destinationlabel"> <x>176</x> <y>132</y> </hint> </hints> </connection> </connections> </ui>