Changeset caef58b531 in tspsg for src/settingsdialog.cpp
- Timestamp:
- Oct 20, 2009, 9:38:01 PM (15 years ago)
- Branches:
- 0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
- Children:
- 85ad815b0b
- Parents:
- bc1b8837b6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/settingsdialog.cpp
rbc1b8837b6 rcaef58b531 24 24 #include "settingsdialog.h" 25 25 26 /*! 27 * \brief Class constructor. 28 * \param parent Settings Dialog parent widget. 29 * 30 * Initializes Settings Dialog and creates its layout based on target OS. 31 */ 26 32 SettingsDialog::SettingsDialog(QWidget *parent) 27 33 : QDialog(parent), newFont(false), newColor(false) … … 218 224 } 219 225 226 /*! 227 * \brief Indicates whether or not the font color has been changed. 228 */ 220 229 bool SettingsDialog::colorChanged() const 221 230 { … … 223 232 } 224 233 234 /*! 235 * \brief Indicates whether or not the font properties have been changed. 236 */ 225 237 bool SettingsDialog::fontChanged() const 226 238 { 227 239 return newFont; 240 } 241 242 void SettingsDialog::spinRandMinValueChanged(int val) { 243 spinRandMax->setMinimum(val); 228 244 } 229 245
Note: See TracChangeset
for help on using the changeset viewer.