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>ChangeOccurrencesDialog</class> <widget class="QDialog" name="ChangeOccurrencesDialog"> <property name="geometry"> <rect> <x>0</x> <y>0</y> <width>500</width> <height>138</height> </rect> </property> <property name="windowTitle"> <string>Change Occurrences</string> </property> <property name="sizeGripEnabled"> <bool>true</bool> </property> <layout class="QVBoxLayout"> <property name="leftMargin"> <number>6</number> </property> <property name="topMargin"> <number>6</number> </property> <property name="rightMargin"> <number>6</number> </property> <property name="bottomMargin"> <number>6</number> </property> <item> <layout class="QHBoxLayout"> <item> <widget class="QLabel" name="label"> <property name="text"> <string>Replace occurrences with:</string> </property> </widget> </item> <item> <widget class="QLineEdit" name="replaceEdit"> <property name="toolTip"> <string>Enter the text occurrences should be replaced with</string> </property> <property name="clearButtonEnabled"> <bool>true</bool> </property> </widget> </item> </layout> </item> <item> <widget class="QCheckBox" name="onlyCallsCheckBox"> <property name="toolTip"> <string>Select to change occurrences, that are function or method calls. "Reads" must be switched on as well.</string> </property> <property name="text"> <string>Do only for calls</string> </property> </widget> </item> <item> <widget class="QCheckBox" name="readsCheckBox"> <property name="toolTip"> <string>Select to change occurrences with read access</string> </property> <property name="text"> <string>Reads</string> </property> <property name="checked"> <bool>true</bool> </property> </widget> </item> <item> <widget class="QCheckBox" name="writesCheckBox"> <property name="toolTip"> <string>Select to change occurrences with write access</string> </property> <property name="text"> <string>Writes</string> </property> <property name="checked"> <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::Cancel|QDialogButtonBox::Ok</set> </property> </widget> </item> </layout> </widget> <resources/> <connections> <connection> <sender>buttonBox</sender> <signal>rejected()</signal> <receiver>ChangeOccurrencesDialog</receiver> <slot>reject()</slot> <hints> <hint type="sourcelabel"> <x>316</x> <y>260</y> </hint> <hint type="destinationlabel"> <x>286</x> <y>274</y> </hint> </hints> </connection> </connections> </ui>