Formatted code
This commit is contained in:
parent
f3907e4c9e
commit
b7bffaa1a7
|
@ -48,7 +48,7 @@ void argDirection_wxString_ToDouble(const wxString &str)
|
|||
// as output by library configuration
|
||||
double value;
|
||||
const bool convOk = str.ToDouble(&value);
|
||||
if(convOk && value <= 42.0){}
|
||||
if (convOk && value <= 42.0) {}
|
||||
}
|
||||
|
||||
void argDirection_wxString_ToCDouble(const wxString &str)
|
||||
|
@ -57,7 +57,7 @@ void argDirection_wxString_ToCDouble(const wxString &str)
|
|||
// as output by library configuration
|
||||
double value;
|
||||
const bool convOk = str.ToCDouble(&value);
|
||||
if(convOk && value <= 42.0){}
|
||||
if (convOk && value <= 42.0) {}
|
||||
}
|
||||
|
||||
void argDirection_wxTextCtrl_GetSelection(const wxTextCtrl *const textCtrl)
|
||||
|
@ -67,7 +67,7 @@ void argDirection_wxTextCtrl_GetSelection(const wxTextCtrl *const textCtrl)
|
|||
long start;
|
||||
long end;
|
||||
textCtrl->GetSelection(&start, &end);
|
||||
if(start > 0 && end > 0){}
|
||||
if (start > 0 && end > 0) {}
|
||||
}
|
||||
|
||||
void useRetval_wxString_MakeCapitalized(wxString &str)
|
||||
|
|
Loading…
Reference in New Issue