mirror of
https://github.com/daveallie/crosspoint-reader.git
synced 2026-02-07 08:07:40 +03:00
fix(cppcheck): clang format
This commit is contained in:
parent
bd28d9d648
commit
5e9e53cc13
@ -56,9 +56,7 @@ UIElement* ThemeManager::createElement(const std::string& id, const std::string&
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Parse integer safely - returns 0 on error
|
// Parse integer safely - returns 0 on error
|
||||||
static int parseIntSafe(const std::string& val) {
|
static int parseIntSafe(const std::string& val) { return static_cast<int>(std::strtol(val.c_str(), nullptr, 10)); }
|
||||||
return static_cast<int>(std::strtol(val.c_str(), nullptr, 10));
|
|
||||||
}
|
|
||||||
|
|
||||||
void ThemeManager::applyProperties(UIElement* elem, const std::map<std::string, std::string>& props) {
|
void ThemeManager::applyProperties(UIElement* elem, const std::map<std::string, std::string>& props) {
|
||||||
const auto elemType = elem->getType();
|
const auto elemType = elem->getType();
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user