diff options
author | crupest <crupest@outlook.com> | 2019-06-27 17:02:58 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2019-06-27 17:02:58 +0800 |
commit | b53527fbe50a953ad0e3225cc812eb76b8a1f82d (patch) | |
tree | eb81cd14d0a165c47f841ad94835f8987109de7e /src/win/native/window_class.cpp | |
parent | 8c5b05bcfce96495b4ffc4209ab8feda12597729 (diff) | |
download | cru-b53527fbe50a953ad0e3225cc812eb76b8a1f82d.tar.gz cru-b53527fbe50a953ad0e3225cc812eb76b8a1f82d.tar.bz2 cru-b53527fbe50a953ad0e3225cc812eb76b8a1f82d.zip |
...
Diffstat (limited to 'src/win/native/window_class.cpp')
-rw-r--r-- | src/win/native/window_class.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/win/native/window_class.cpp b/src/win/native/window_class.cpp index 6c7d0d3d..d69160ab 100644 --- a/src/win/native/window_class.cpp +++ b/src/win/native/window_class.cpp @@ -1,8 +1,8 @@ #include "cru/win/native/window_class.hpp" -#include "cru/win/exception.hpp" +#include "cru/win/native/exception.hpp" -namespace cru::win::native { +namespace cru::platform::native::win { WindowClass::WindowClass(const std::wstring& name, WNDPROC window_proc, HINSTANCE h_instance) : name_(name) { @@ -25,4 +25,4 @@ WindowClass::WindowClass(const std::wstring& name, WNDPROC window_proc, if (atom_ == 0) throw Win32Error(::GetLastError(), "Failed to create window class."); } -} // namespace cru::win::native +} // namespace cru::platform::native::win |