Config - defaults
- Implemented replacement Config::get* methods. - Replaced all calls throughout the code, with the new methods which have no static values as defaults.
This commit is contained in:
@@ -352,7 +352,7 @@ std::string ucFirst (const std::string& input)
|
||||
////////////////////////////////////////////////////////////////////////////////
|
||||
const char* optionalBlankLine ()
|
||||
{
|
||||
if (context.config.get ("blanklines", true) == true) // no i18n
|
||||
if (context.config.getBoolean ("blanklines") == true) // no i18n
|
||||
return newline;
|
||||
|
||||
return noline;
|
||||
|
||||
Reference in New Issue
Block a user