Browse Source

- Done optimizing foreach loops

adaptive-webui-19844
Christophe Dumez 16 years ago
parent
commit
17e0700a52
  1. 3
      src/options_imp.cpp

3
src/options_imp.cpp

@ -49,8 +49,7 @@ options_imp::options_imp(QWidget *parent):QDialog(parent){
setupUi(this); setupUi(this);
// Get apply button in button box // Get apply button in button box
QList<QAbstractButton *> buttons = buttonBox->buttons(); QList<QAbstractButton *> buttons = buttonBox->buttons();
QAbstractButton *button; foreach(QAbstractButton *button, buttons){
foreach(button, buttons){
if(buttonBox->buttonRole(button) == QDialogButtonBox::ApplyRole){ if(buttonBox->buttonRole(button) == QDialogButtonBox::ApplyRole){
applyButton = button; applyButton = button;
break; break;

Loading…
Cancel
Save