Changeset e7f7d3854d in tspsg for src
- Timestamp:
- Jun 22, 2009, 9:59:44 AM (15 years ago)
- Branches:
- 0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
- Children:
- 2394ede291
- Parents:
- 665d32434f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/settingsdialog.cpp
r665d32434f re7f7d3854d 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.