diff options
author | crupest <crupest@outlook.com> | 2021-10-21 17:44:56 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2021-10-21 17:44:56 +0800 |
commit | 72fc892792565ef39fcae6b7d2a19006dc3a3238 (patch) | |
tree | ea1609b424215e6fe86d6280ce86beea0c73b61b /src/ui/UiManager.cpp | |
parent | fc9cd10a84ea92dd702ac84d302ca46198d17d23 (diff) | |
download | cru-72fc892792565ef39fcae6b7d2a19006dc3a3238.tar.gz cru-72fc892792565ef39fcae6b7d2a19006dc3a3238.tar.bz2 cru-72fc892792565ef39fcae6b7d2a19006dc3a3238.zip |
...
Diffstat (limited to 'src/ui/UiManager.cpp')
-rw-r--r-- | src/ui/UiManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/UiManager.cpp b/src/ui/UiManager.cpp index 85ca552c..ed40e70f 100644 --- a/src/ui/UiManager.cpp +++ b/src/ui/UiManager.cpp @@ -20,8 +20,8 @@ using namespace cru::ui::style; using namespace cru::ui::helper; namespace { -std::unique_ptr<ISolidColorBrush> CreateSolidColorBrush(IGraphicsFactory* factory, - const Color& color) { +std::unique_ptr<ISolidColorBrush> CreateSolidColorBrush( + IGraphicsFactory* factory, const Color& color) { auto brush = factory->CreateSolidColorBrush(); brush->SetColor(color); return brush; |