ScreenManager: drop unused member

This commit is contained in:
Christian Göttsche 2021-08-10 16:59:16 +02:00
parent 51669ecba8
commit a8b8f5f836
2 changed files with 0 additions and 2 deletions

View File

@ -35,7 +35,6 @@ ScreenManager* ScreenManager_new(Header* header, const Settings* settings, const
this->header = header; this->header = header;
this->settings = settings; this->settings = settings;
this->state = state; this->state = state;
this->owner = owner;
this->allowFocusChange = true; this->allowFocusChange = true;
return this; return this;
} }

View File

@ -26,7 +26,6 @@ typedef struct ScreenManager_ {
Header* header; Header* header;
const Settings* settings; const Settings* settings;
const State* state; const State* state;
bool owner;
bool allowFocusChange; bool allowFocusChange;
} ScreenManager; } ScreenManager;