diff options
author | crupest <crupest@outlook.com> | 2022-01-28 22:32:22 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2022-01-28 22:32:22 +0800 |
commit | 27ef6b29fe9ea6931dd9aef585e8b9467599b5f1 (patch) | |
tree | b6c6f2162a9561e1f86568717649913999cbb3e7 /src/win/gui/WindowClass.cpp | |
parent | af43f72adcb6738eebaad505389084c17411a694 (diff) | |
download | cru-27ef6b29fe9ea6931dd9aef585e8b9467599b5f1.tar.gz cru-27ef6b29fe9ea6931dd9aef585e8b9467599b5f1.tar.bz2 cru-27ef6b29fe9ea6931dd9aef585e8b9467599b5f1.zip |
...
Diffstat (limited to 'src/win/gui/WindowClass.cpp')
-rw-r--r-- | src/win/gui/WindowClass.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/win/gui/WindowClass.cpp b/src/win/gui/WindowClass.cpp index a033d091..9d86d791 100644 --- a/src/win/gui/WindowClass.cpp +++ b/src/win/gui/WindowClass.cpp @@ -23,6 +23,6 @@ WindowClass::WindowClass(std::wstring name, WNDPROC window_proc, atom_ = ::RegisterClassExW(&window_class); if (atom_ == 0) - throw Win32Error(::GetLastError(), "Failed to create window class."); + throw Win32Error(::GetLastError(), u"Failed to create window class."); } } // namespace cru::platform::gui::win |