diff options
author | crupest <crupest@outlook.com> | 2018-11-07 21:40:04 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2018-11-07 21:40:04 +0800 |
commit | efdce672123284847bd7fb6f12ac1ec96f28f3ef (patch) | |
tree | 298e6313e9a48c5867b2355242b78d3cd23fdc61 /src/ui/events | |
parent | 634dab6ad2c9e4675beacfb77ac02b2d43cab132 (diff) | |
download | cru-efdce672123284847bd7fb6f12ac1ec96f28f3ef.tar.gz cru-efdce672123284847bd7fb6f12ac1ec96f28f3ef.tar.bz2 cru-efdce672123284847bd7fb6f12ac1ec96f28f3ef.zip |
Make all header *.hpp .
Diffstat (limited to 'src/ui/events')
-rw-r--r-- | src/ui/events/ui_event.cpp | 4 | ||||
-rw-r--r-- | src/ui/events/ui_event.hpp (renamed from src/ui/events/ui_event.h) | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/ui/events/ui_event.cpp b/src/ui/events/ui_event.cpp index 9f5185ce..a1fc3d82 100644 --- a/src/ui/events/ui_event.cpp +++ b/src/ui/events/ui_event.cpp @@ -1,6 +1,6 @@ -#include "ui_event.h" +#include "ui_event.hpp" -#include "ui/control.h" +#include "ui/control.hpp" namespace cru::ui::events { diff --git a/src/ui/events/ui_event.h b/src/ui/events/ui_event.hpp index 24429f04..c0585506 100644 --- a/src/ui/events/ui_event.h +++ b/src/ui/events/ui_event.hpp @@ -1,12 +1,12 @@ #pragma once -#include "system_headers.h" +#include "system_headers.hpp" #include <optional> -#include "base.h" -#include "cru_event.h" -#include "ui/ui_base.h" -#include "ui/layout_base.h" +#include "base.hpp" +#include "cru_event.hpp" +#include "ui/ui_base.hpp" +#include "ui/layout_base.hpp" namespace cru::ui { |