- Remove "_" prefix on members

- Remove aspect check getBlurredBackground as it is not needed
This commit is contained in:
Alfred Reynolds
2021-07-31 14:18:01 +12:00
parent 4132f65b2e
commit 455a794669
6 changed files with 27 additions and 27 deletions

View File

@@ -27,13 +27,13 @@ class Overlay
int getMarginBottomRight();
int getFontsizeBottomRight();
void setDebugMode(const bool debugMode) { _debugMode = debugMode; }
void setDebugMode(const bool debugModeIn) { debugMode = debugModeIn; }
private:
const std::string overlayInput;
int margin;
int fontsize;
bool _debugMode = false;
bool debugMode = false;
QString topLeftTemplate;
QString topRightTemplate;