Reformatting code using Kernighan & Ritchie style, tabs, tab width=4.
Command line: astyle --style=kr --indent=force-tab=4 --lineend=linux -n -r <file names>
This commit is contained in:
@@ -27,24 +27,27 @@
|
||||
|
||||
class ConfigFile;
|
||||
|
||||
class changeCompleteBlindsDialogImpl: public QDialog, public Ui::changeCompleteBlindsDialog {
|
||||
Q_OBJECT
|
||||
class changeCompleteBlindsDialogImpl: public QDialog, public Ui::changeCompleteBlindsDialog
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
changeCompleteBlindsDialogImpl(QWidget *parent = 0, ConfigFile *c = 0);
|
||||
|
||||
changeCompleteBlindsDialogImpl(QWidget *parent = 0, ConfigFile *c = 0);
|
||||
|
||||
void exec();
|
||||
|
||||
|
||||
|
||||
public slots:
|
||||
bool getSettingsCorrect() const { return settingsCorrect;}
|
||||
|
||||
bool getSettingsCorrect() const {
|
||||
return settingsCorrect;
|
||||
}
|
||||
|
||||
void updateSpinBoxInputMinimum(int);
|
||||
void addBlindValueToList();
|
||||
void removeBlindFromList();
|
||||
void sortBlindsList();
|
||||
|
||||
private:
|
||||
|
||||
|
||||
ConfigFile* myConfig;
|
||||
|
||||
bool settingsCorrect;
|
||||
|
||||
Reference in New Issue
Block a user