diff options
author | Noel Grandin <noel@peralex.com> | 2016-05-09 16:40:12 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-05-10 08:42:17 +0200 |
commit | c748debd8f1c6a8c0cd202013edebd74d608ada1 (patch) | |
tree | c23fa49f1d1041407711f64667a3f6eb9e9c289c /vcl/headless | |
parent | 9c7222c11c331ecd1562e963e78ab85be75b8e49 (diff) |
convert WINDOWSTATE_STATE to scoped enum
Change-Id: I5448c7e46042850f18970c7613ec5a37df57bce7
Diffstat (limited to 'vcl/headless')
-rw-r--r-- | vcl/headless/svpframe.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/headless/svpframe.cxx b/vcl/headless/svpframe.cxx index ee6d58891ca6..0b971f4a2a31 100644 --- a/vcl/headless/svpframe.cxx +++ b/vcl/headless/svpframe.cxx @@ -340,7 +340,7 @@ void SvpSalFrame::SetWindowState( const SalFrameState *pState ) bool SvpSalFrame::GetWindowState( SalFrameState* pState ) { - pState->mnState = WINDOWSTATE_STATE_NORMAL; + pState->mnState = WindowStateState::Normal; pState->mnX = maGeometry.nX; pState->mnY = maGeometry.nY; pState->mnWidth = maGeometry.nWidth; |