diff options
Diffstat (limited to 'include/cru/ui/window.hpp')
-rw-r--r-- | include/cru/ui/window.hpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/cru/ui/window.hpp b/include/cru/ui/window.hpp index 140ac531..2ed05192 100644 --- a/include/cru/ui/window.hpp +++ b/include/cru/ui/window.hpp @@ -7,7 +7,7 @@ #include <vector> namespace cru::platform::native { -struct NativeWindow; +struct INativeWindow; } namespace cru::ui { @@ -39,7 +39,7 @@ class Window final : public ContentControl { render::RenderObject* GetRenderObject() const override; - platform::native::NativeWindow* GetNativeWindow() const { return native_window_; } + platform::native::INativeWindow* GetNativeWindow() const { return native_window_; } Control* GetMouseHoverControl() const { return mouse_hover_control_; } @@ -82,7 +82,7 @@ class Window final : public ContentControl { const Point& point); private: - platform::native::NativeWindow* native_window_; + platform::native::INativeWindow* native_window_; std::vector<EventRevokerGuard> event_revoker_guards_; std::shared_ptr<render::WindowRenderObject> render_object_; |