mirror of
https://github.com/scorpion-26/gBar.git
synced 2024-11-22 03:02:49 +00:00
Fix compilation without USE_LOGFILE
This commit is contained in:
parent
7563f90a0c
commit
9ecba84be5
1 changed files with 2 additions and 2 deletions
|
@ -400,7 +400,7 @@ namespace Utils
|
|||
case 'B': return Orientation::Horizontal;
|
||||
case 'L':
|
||||
case 'R': return Orientation::Vertical;
|
||||
default: LOG("Invalid location char \"" << Config::Get().location << "\"!") return Orientation::Horizontal;
|
||||
default: LOG("Invalid location char \"" << Config::Get().location << "\"!"); return Orientation::Horizontal;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -431,7 +431,7 @@ namespace Utils
|
|||
case 'B': return TransitionType::SlideLeft;
|
||||
case 'L':
|
||||
case 'R': return TransitionType::SlideUp;
|
||||
default: LOG("Invalid location char \"" << Config::Get().location << "\"!") return TransitionType::SlideLeft;
|
||||
default: LOG("Invalid location char \"" << Config::Get().location << "\"!"); return TransitionType::SlideLeft;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue