- Timestamp:
- Jun 22, 2009, 9:59:44 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/settingsdialog.cpp
r23 r24 93 93 void SettingsDialog::buttonColorClicked() 94 94 { 95 QColor Dialog cd(color,this);96 if (c d.exec() == QDialog::Accepted)97 color = cd.selectedColor();95 QColor color = QColorDialog::getColor(this->color,this); 96 if (color.isValid()) 97 this->color = color; 98 98 } 99 99
Note: See TracChangeset
for help on using the changeset viewer.