cancel in settningsdialog bugfix

This commit is contained in:
doitux
2007-08-24 13:07:24 +00:00
parent 67df6bccf8
commit c606cba1fd
2 changed files with 33 additions and 17 deletions
+1 -1
View File
@@ -843,7 +843,7 @@ void mainWindowImpl::callSettingsDialog() {
mySettingsDialog->exec(); mySettingsDialog->exec();
if (mySettingsDialog->getSettingsCorrect()) { if (mySettingsDialog->result() == QDialog::Accepted && mySettingsDialog->getSettingsCorrect()) {
//Toolbox verstecken? //Toolbox verstecken?
if (myConfig->readConfigInt("ShowLeftToolBox")) { groupBox_LeftToolBox->show(); } if (myConfig->readConfigInt("ShowLeftToolBox")) { groupBox_LeftToolBox->show(); }
else { groupBox_LeftToolBox->hide(); } else { groupBox_LeftToolBox->hide(); }
+32 -16
View File
@@ -2246,22 +2246,6 @@ p, li { white-space: pre-wrap; }
<include location="resources.qrc" /> <include location="resources.qrc" />
</resources> </resources>
<connections> <connections>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>settingsDialog</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel" >
<x>340</x>
<y>576</y>
</hint>
<hint type="destinationlabel" >
<x>286</x>
<y>274</y>
</hint>
</hints>
</connection>
<connection> <connection>
<sender>listWidget</sender> <sender>listWidget</sender>
<signal>currentRowChanged(int)</signal> <signal>currentRowChanged(int)</signal>
@@ -2310,5 +2294,37 @@ p, li { white-space: pre-wrap; }
</hint> </hint>
</hints> </hints>
</connection> </connection>
<connection>
<sender>buttonBox</sender>
<signal>accepted()</signal>
<receiver>settingsDialog</receiver>
<slot>accept()</slot>
<hints>
<hint type="sourcelabel" >
<x>471</x>
<y>496</y>
</hint>
<hint type="destinationlabel" >
<x>354</x>
<y>472</y>
</hint>
</hints>
</connection>
<connection>
<sender>buttonBox</sender>
<signal>rejected()</signal>
<receiver>settingsDialog</receiver>
<slot>reject()</slot>
<hints>
<hint type="sourcelabel" >
<x>559</x>
<y>498</y>
</hint>
<hint type="destinationlabel" >
<x>599</x>
<y>497</y>
</hint>
</hints>
</connection>
</connections> </connections>
</ui> </ui>