diff options
Diffstat (limited to 'vcl/inc/window.h')
-rw-r--r-- | vcl/inc/window.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/vcl/inc/window.h b/vcl/inc/window.h index d8c864bd5725..ccecb3d63c86 100644 --- a/vcl/inc/window.h +++ b/vcl/inc/window.h @@ -20,6 +20,9 @@ #ifndef INCLUDED_VCL_INC_WINDOW_H #define INCLUDED_VCL_INC_WINDOW_H +#include <sal/config.h> + +#include <boost/noncopyable.hpp> #include <com/sun/star/uno/Reference.hxx> #include <cppuhelper/weakref.hxx> #include <list> @@ -192,7 +195,7 @@ struct ImplAccessibleInfos enum AlwaysInputMode { AlwaysInputNone = 0, AlwaysInputEnabled = 1, AlwaysInputDisabled =2 }; -class WindowImpl +class WindowImpl: private boost::noncopyable { public: WindowImpl( WindowType ); |