summaryrefslogtreecommitdiffstats
path: root/servers/display_server.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2020-07-01 16:28:48 +0200
committerGitHub <noreply@github.com>2020-07-01 16:28:48 +0200
commit9000e596502c45b5611768efcd30e76556209717 (patch)
tree486b63209cbade48aadd9792710d4b685c688928 /servers/display_server.h
parent2fc3c5bb9f0250cb5caecb79f8dc00c100d1e189 (diff)
parent372136fe75e9f042d2284bae46d2879950f4d399 (diff)
downloadredot-engine-9000e596502c45b5611768efcd30e76556209717.tar.gz
Merge pull request #40016 from akien-mga/environment-code-cleanup
Environment: Refactor code for readability + more
Diffstat (limited to 'servers/display_server.h')
-rw-r--r--servers/display_server.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/servers/display_server.h b/servers/display_server.h
index 166274f8ed..a4fcd29a4a 100644
--- a/servers/display_server.h
+++ b/servers/display_server.h
@@ -211,7 +211,7 @@ public:
WINDOW_FLAG_NO_FOCUS_BIT = (1 << WINDOW_FLAG_NO_FOCUS)
};
- virtual WindowID create_sub_window(WindowMode p_mode, uint32_t p_flags, const Rect2i & = Rect2i());
+ virtual WindowID create_sub_window(WindowMode p_mode, uint32_t p_flags, const Rect2i &p_rect = Rect2i());
virtual void delete_sub_window(WindowID p_id);
virtual WindowID get_window_at_screen_position(const Point2i &p_position) const = 0;