Moved member variables to initializer list
This commit is contained in:
parent
41d1dba35f
commit
08f22f1cf0
44 changed files with 609 additions and 694 deletions
|
|
@ -222,11 +222,10 @@ String EditorExportPreset::get_custom_features() const {
|
|||
return custom_features;
|
||||
}
|
||||
|
||||
EditorExportPreset::EditorExportPreset() {
|
||||
|
||||
export_path = "";
|
||||
export_filter = EXPORT_ALL_RESOURCES;
|
||||
runnable = false;
|
||||
EditorExportPreset::EditorExportPreset() :
|
||||
export_filter(EXPORT_ALL_RESOURCES),
|
||||
export_path(""),
|
||||
runnable(false) {
|
||||
}
|
||||
|
||||
///////////////////////////////////
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue