diff options
author | Noel Grandin <noel@peralex.com> | 2015-05-22 10:37:31 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-05-22 10:37:59 +0200 |
commit | ac3802da9ac7793c60a323bb8066c10fb40cf576 (patch) | |
tree | 659a60dafb818c327d3276b2a73a83498603d144 /extensions | |
parent | 566922a98d548529feacb7c21bfc8897ff5b61af (diff) |
convert WINDOW_POSSIZE constants to scoped enum
Change-Id: Id85137ffc7309a66b04132d588d289db136117b9
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/plugin/base/plctrl.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extensions/source/plugin/base/plctrl.cxx b/extensions/source/plugin/base/plctrl.cxx index 4276ba98eb01..917809d03976 100644 --- a/extensions/source/plugin/base/plctrl.cxx +++ b/extensions/source/plugin/base/plctrl.cxx @@ -32,6 +32,7 @@ #include <com/sun/star/awt/XSpinListener.hpp> #include <com/sun/star/awt/XItemListener.hpp> #include <com/sun/star/awt/XVclContainerListener.hpp> +#include <com/sun/star/awt/PosSize.hpp> #include <plugin/plctrl.hxx> #include <vcl/syschild.hxx> @@ -43,7 +44,7 @@ PluginControl_Impl::PluginControl_Impl() , _nY( 0 ) , _nWidth( 100 ) , _nHeight( 100 ) - , _nFlags( WINDOW_POSSIZE_ALL ) + , _nFlags( css::awt::PosSize::POSSIZE ) , _bVisible(false) , _bInDesignMode(false) , _bEnable(true) |