diff options
author | Noel Grandin <noel@peralex.com> | 2015-05-22 13:48:09 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-05-25 10:31:35 +0200 |
commit | 65be8fd0f7f30eaca4fbc35e3fdc9cb7763cb44d (patch) | |
tree | bbfe99aba8f0155c7365b4b9d4bcd226654d88d6 /toolkit | |
parent | b419da0f53cf7f65b1d0c58351176ece23fbfe1f (diff) |
convert WINDOW_ZORDER constants to scoped enum
Change-Id: I91a583fe7d4195ee6bc73b4854f757517b38408b
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/source/awt/vclxcontainer.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolkit/source/awt/vclxcontainer.cxx b/toolkit/source/awt/vclxcontainer.cxx index aff962396d16..448a09fd8882 100644 --- a/toolkit/source/awt/vclxcontainer.cxx +++ b/toolkit/source/awt/vclxcontainer.cxx @@ -143,7 +143,7 @@ void VCLXContainer::setTabOrder( const ::com::sun::star::uno::Sequence< ::com::s // Order windows before manipulating their style, because elements such as the // RadioButton considers the PREV-window in StateChanged. if ( pPrevWin ) - pWin->SetZOrder( pPrevWin, WINDOW_ZORDER_BEHIND ); + pWin->SetZOrder( pPrevWin, ZOrderFlags::Behind ); WinBits nStyle = pWin->GetStyle(); nStyle &= ~(WB_TABSTOP|WB_NOTABSTOP|WB_GROUP); @@ -198,7 +198,7 @@ void VCLXContainer::setGroup( const ::com::sun::star::uno::Sequence< ::com::sun: // Z-Order if ( pSortBehind ) - pWin->SetZOrder( pSortBehind, WINDOW_ZORDER_BEHIND ); + pWin->SetZOrder( pSortBehind, ZOrderFlags::Behind ); WinBits nStyle = pWin->GetStyle(); if ( n == 0 ) |