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 /include/cru/osx/gui | |
parent | b90c398de829d1ba5329651d75bae82f5e4085fe (diff) | |
download | cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.tar.gz cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.tar.bz2 cru-74bb9cd27242b9320f99ff4d2b50c3051576cc14.zip |
...
Diffstat (limited to 'include/cru/osx/gui')
-rw-r--r-- | include/cru/osx/gui/Clipboard.h (renamed from include/cru/osx/gui/Clipboard.hpp) | 6 | ||||
-rw-r--r-- | include/cru/osx/gui/Cursor.h (renamed from include/cru/osx/gui/Cursor.hpp) | 4 | ||||
-rw-r--r-- | include/cru/osx/gui/InputMethod.h (renamed from include/cru/osx/gui/InputMethod.hpp) | 4 | ||||
-rw-r--r-- | include/cru/osx/gui/Keyboard.h (renamed from include/cru/osx/gui/Keyboard.hpp) | 2 | ||||
-rw-r--r-- | include/cru/osx/gui/Menu.h (renamed from include/cru/osx/gui/Menu.hpp) | 4 | ||||
-rw-r--r-- | include/cru/osx/gui/Resource.h (renamed from include/cru/osx/gui/Resource.hpp) | 4 | ||||
-rw-r--r-- | include/cru/osx/gui/UiApplication.h (renamed from include/cru/osx/gui/UiApplication.hpp) | 4 | ||||
-rw-r--r-- | include/cru/osx/gui/Window.h (renamed from include/cru/osx/gui/Window.hpp) | 8 |
8 files changed, 18 insertions, 18 deletions
diff --git a/include/cru/osx/gui/Clipboard.hpp b/include/cru/osx/gui/Clipboard.h index fea97140..b4dcce4c 100644 --- a/include/cru/osx/gui/Clipboard.hpp +++ b/include/cru/osx/gui/Clipboard.h @@ -1,8 +1,8 @@ #pragma once -#include "Resource.hpp" +#include "Resource.h" -#include "cru/platform/gui/Base.hpp" -#include "cru/platform/gui/Clipboard.hpp" +#include "cru/platform/gui/Base.h" +#include "cru/platform/gui/Clipboard.h" #include <memory> diff --git a/include/cru/osx/gui/Cursor.hpp b/include/cru/osx/gui/Cursor.h index 497f5853..6cfd400a 100644 --- a/include/cru/osx/gui/Cursor.hpp +++ b/include/cru/osx/gui/Cursor.h @@ -1,6 +1,6 @@ #pragma once -#include "Resource.hpp" -#include "cru/platform/gui/Cursor.hpp" +#include "Resource.h" +#include "cru/platform/gui/Cursor.h" #include <memory> diff --git a/include/cru/osx/gui/InputMethod.hpp b/include/cru/osx/gui/InputMethod.h index d184a722..cbfdae6c 100644 --- a/include/cru/osx/gui/InputMethod.hpp +++ b/include/cru/osx/gui/InputMethod.h @@ -1,7 +1,7 @@ #pragma once -#include "Resource.hpp" +#include "Resource.h" -#include "cru/platform/gui/InputMethod.hpp" +#include "cru/platform/gui/InputMethod.h" namespace cru::platform::gui::osx { class OsxWindow; diff --git a/include/cru/osx/gui/Keyboard.hpp b/include/cru/osx/gui/Keyboard.h index ae5b3ccf..89e0fa05 100644 --- a/include/cru/osx/gui/Keyboard.hpp +++ b/include/cru/osx/gui/Keyboard.h @@ -1,5 +1,5 @@ #pragma once -#include "cru/platform/gui/Keyboard.hpp" +#include "cru/platform/gui/Keyboard.h" namespace cru::platform::gui::osx { KeyCode KeyCodeFromOsxToCru(unsigned short n); diff --git a/include/cru/osx/gui/Menu.hpp b/include/cru/osx/gui/Menu.h index fe3bf3f9..c5cc756a 100644 --- a/include/cru/osx/gui/Menu.hpp +++ b/include/cru/osx/gui/Menu.h @@ -1,7 +1,7 @@ #pragma once -#include "Resource.hpp" +#include "Resource.h" -#include "cru/platform/gui/Menu.hpp" +#include "cru/platform/gui/Menu.h" namespace cru::platform::gui::osx { namespace details { diff --git a/include/cru/osx/gui/Resource.hpp b/include/cru/osx/gui/Resource.h index 3e44bb9b..bc3f9cd6 100644 --- a/include/cru/osx/gui/Resource.hpp +++ b/include/cru/osx/gui/Resource.h @@ -1,7 +1,7 @@ #pragma once -#include "../Resource.hpp" +#include "../Resource.h" -#include "cru/platform/gui/Base.hpp" +#include "cru/platform/gui/Base.h" namespace cru::platform::gui::osx { class OsxGuiResource : public platform::osx::OsxResource { diff --git a/include/cru/osx/gui/UiApplication.hpp b/include/cru/osx/gui/UiApplication.h index 003df8cc..2d2c119c 100644 --- a/include/cru/osx/gui/UiApplication.hpp +++ b/include/cru/osx/gui/UiApplication.h @@ -1,6 +1,6 @@ #pragma once -#include "Resource.hpp" -#include "cru/platform/gui/UiApplication.hpp" +#include "Resource.h" +#include "cru/platform/gui/UiApplication.h" #include <functional> #include <memory> diff --git a/include/cru/osx/gui/Window.hpp b/include/cru/osx/gui/Window.h index 904a0188..6cefbe8e 100644 --- a/include/cru/osx/gui/Window.hpp +++ b/include/cru/osx/gui/Window.h @@ -1,8 +1,8 @@ #pragma once -#include "Resource.hpp" -#include "cru/platform/gui/Base.hpp" -#include "cru/platform/gui/InputMethod.hpp" -#include "cru/platform/gui/Window.hpp" +#include "Resource.h" +#include "cru/platform/gui/Base.h" +#include "cru/platform/gui/InputMethod.h" +#include "cru/platform/gui/Window.h" #include <memory> |