diff options
author | Noel Grandin <noel@peralex.com> | 2016-05-10 12:16:45 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-05-10 12:25:17 +0200 |
commit | f6fb8a152797de4c5339b2fa5a3adf0e2ee0c349 (patch) | |
tree | f96d68eae4dd2bd9790d17a029e24118a517a57c /vcl/win | |
parent | 08977ff115fca510f0152cf26ccf3df24640d8b4 (diff) |
fix OSX and Windows builds
after my "Convert SALEVENT to scoped enum" commit
Change-Id: Ib4a3f0e18fa5d8160446d5b5cd505bae651da7d5
Diffstat (limited to 'vcl/win')
-rw-r--r-- | vcl/win/window/salframe.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/win/window/salframe.cxx b/vcl/win/window/salframe.cxx index 47aa4ddd543f..2f057d3eba3e 100644 --- a/vcl/win/window/salframe.cxx +++ b/vcl/win/window/salframe.cxx @@ -1434,7 +1434,7 @@ void WinSalFrame::SetPosSize( long nX, long nY, long nWidth, long nHeight, UpdateFrameGeometry( mhWnd, this ); // Notification -- really ??? - if( nEvent ) + if( nEvent != SalEvent::NONE ) CallCallback( nEvent, NULL ); } |