1
0
Fork 0

source/Platform/PlatformWindow.h: rename parent to owner as the generic window is not really a parent to the platform one.

This commit is contained in:
Henrik Hautakoski 2023-08-22 17:10:08 +02:00
parent 45d3bff620
commit afc0845006
2 changed files with 5 additions and 5 deletions

View file

@ -18,7 +18,7 @@ class PlatformWindow
{
public :
// Factory method.
static PlatformWindow* make(Window* parent);
static PlatformWindow* make(Window* owner);
virtual ~PlatformWindow();
@ -66,7 +66,7 @@ protected :
private :
Window * m_parent;
Window * m_owner;
};
} // namespace sp