fix(config): Rename parameter for individual border size

Rename `border-{left,top,right,bottom}` to `border-{left,top,right,bottom}-size`
to follow the naming scheme used for other size parameters
This commit is contained in:
Michael Carlberg
2017-01-12 17:55:55 +01:00
parent 16a355a2b7
commit d49b1cacd3
2 changed files with 5 additions and 5 deletions

View File

@ -67,7 +67,7 @@ string config::section() const {
void config::warn_deprecated(const string& section, const string& key, string replacement) const {
try {
auto value = get<string>(section, key);
m_log.warn("The config parameter `%s.%s` is deprecated, use `%s` instead.", section, key, move(replacement));
m_log.warn("The config parameter `%s.%s` is deprecated, use `%s.%s` instead.", section, key, section, move(replacement));
} catch (const key_error& err) {
}
}