Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-attack committed Oct 26, 2023
1 parent 84c917d commit 9a599f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 2 additions & 0 deletions gwen/include/Gwen/Controls/WindowCanvas.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,8 @@ namespace Gwen

void SetTitle( Gwen::String title );

void SetPos(int x, int y);

virtual Gwen::Controls::Base* GetControlAt( int x, int y, bool bOnlyIfMouseEnabled ) override;

// DPI handling
Expand Down
5 changes: 0 additions & 5 deletions gwen/src/Controls/WindowCanvas.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -386,11 +386,6 @@ void WindowCanvas::SetPos( int x, int y )
Gwen::Platform::SetBoundsPlatformWindow( m_pOSWindow, x, y, width, height);
}

void WindowCanvas::OnBoundsChanged( Gwen::Rect oldBounds )
{
BaseClass::OnBoundsChanged(oldBounds);
}

void WindowCanvas::SetWindowSize(int x, int y)
{
Gwen::PointF scaling = GetDPIScaling();
Expand Down

0 comments on commit 9a599f4

Please sign in to comment.