diff options
author | crupest <crupest@outlook.com> | 2022-02-08 16:53:51 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-02-08 16:53:51 +0800 |
commit | 74bb9cd27242b9320f99ff4d2b50c3051576cc14 (patch) | |
tree | 744bac5799c593d1d6f81e7b09581bea626f2cde /src/theme_builder/components | |
parent | b90c398de829d1ba5329651d75bae82f5e4085fe (diff) | |
download | cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.tar.gz cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.tar.bz2 cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.zip |
...
Diffstat (limited to 'src/theme_builder/components')
-rw-r--r-- | src/theme_builder/components/MainWindow.cpp | 8 | ||||
-rw-r--r-- | src/theme_builder/components/MainWindow.h (renamed from src/theme_builder/components/MainWindow.hpp) | 10 | ||||
-rw-r--r-- | src/theme_builder/components/StyleRuleSetEditor.cpp | 2 | ||||
-rw-r--r-- | src/theme_builder/components/StyleRuleSetEditor.h (renamed from src/theme_builder/components/StyleRuleSetEditor.hpp) | 6 |
4 files changed, 13 insertions, 13 deletions
diff --git a/src/theme_builder/components/MainWindow.cpp b/src/theme_builder/components/MainWindow.cpp index d52193f1..31530491 100644 --- a/src/theme_builder/components/MainWindow.cpp +++ b/src/theme_builder/components/MainWindow.cpp @@ -1,7 +1,7 @@ -#include "MainWindow.hpp" -#include "cru/ui/Base.hpp" -#include "cru/ui/controls/StackLayout.hpp" -#include "cru/ui/controls/TextBlock.hpp" +#include "MainWindow.h" +#include "cru/ui/Base.h" +#include "cru/ui/controls/StackLayout.h" +#include "cru/ui/controls/TextBlock.h" namespace cru::theme_builder { using namespace cru::ui; diff --git a/src/theme_builder/components/MainWindow.hpp b/src/theme_builder/components/MainWindow.h index ef37b7a2..101b678e 100644 --- a/src/theme_builder/components/MainWindow.hpp +++ b/src/theme_builder/components/MainWindow.h @@ -1,9 +1,9 @@ #pragma once -#include "cru/ui/components/Component.hpp" -#include "cru/ui/controls/Button.hpp" -#include "cru/ui/controls/FlexLayout.hpp" -#include "cru/ui/controls/StackLayout.hpp" -#include "cru/ui/controls/Window.hpp" +#include "cru/ui/components/Component.h" +#include "cru/ui/controls/Button.h" +#include "cru/ui/controls/FlexLayout.h" +#include "cru/ui/controls/StackLayout.h" +#include "cru/ui/controls/Window.h" namespace cru::theme_builder { class MainWindow : public ui::components::Component { diff --git a/src/theme_builder/components/StyleRuleSetEditor.cpp b/src/theme_builder/components/StyleRuleSetEditor.cpp index be6fd8d6..933706a3 100644 --- a/src/theme_builder/components/StyleRuleSetEditor.cpp +++ b/src/theme_builder/components/StyleRuleSetEditor.cpp @@ -1,4 +1,4 @@ -#include "StyleRuleSetEditor.hpp" +#include "StyleRuleSetEditor.h" namespace cru::theme_builder { StyleRuleSetEditor::StyleRuleSetEditor() {} diff --git a/src/theme_builder/components/StyleRuleSetEditor.hpp b/src/theme_builder/components/StyleRuleSetEditor.h index 8bf55229..ecb3ee95 100644 --- a/src/theme_builder/components/StyleRuleSetEditor.hpp +++ b/src/theme_builder/components/StyleRuleSetEditor.h @@ -1,7 +1,7 @@ #pragma once -#include "cru/ui/components/Component.hpp" -#include "cru/ui/controls/Control.hpp" -#include "cru/ui/controls/FlexLayout.hpp" +#include "cru/ui/components/Component.h" +#include "cru/ui/controls/Control.h" +#include "cru/ui/controls/FlexLayout.h" namespace cru::theme_builder { class StyleRuleSetEditor : public ui::components::Component { |