- 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

@@ -50,7 +50,7 @@ void Overlay::parseInput() {
QString Overlay::getTemplate(QStringList components){
if (components.size()>3) {
if(_debugMode)
if(debugMode)
{
std::cout << "template: " << components[3].toStdString() << std::endl;
}
@@ -61,7 +61,7 @@ QString Overlay::getTemplate(QStringList components){
int Overlay::getMargin(QStringList components){
if (components.size()>1) {
if(_debugMode)
if(debugMode)
{
std::cout << "margin: " << components[1].toStdString() << std::endl;
}
@@ -76,7 +76,7 @@ int Overlay::getMargin(QStringList components){
int Overlay::getFontsize(QStringList components){
if (components.size()>2) {
if(_debugMode)
if(debugMode)
{
std::cout << "fontsize: " << components[2].toStdString() << std::endl;
}