Corrected member initialisation order (addressing -Wreorder warnings)

This commit is contained in:
Nav
2023-08-19 21:53:00 +01:00
parent c622c9bd2e
commit 9a6e22e6c7
25 changed files with 49 additions and 42 deletions

View File

@@ -150,9 +150,9 @@ Insight::Insight(
void Insight::activateMainWindow() {
if (this->mainWindow == nullptr) {
this->mainWindow = new InsightWindow(
this->environmentConfig,
this->insightConfig,
this->insightProjectSettings,
this->insightConfig,
this->environmentConfig,
this->targetDescriptor
);