diff options
Diffstat (limited to 'basctl/source/inc')
-rw-r--r-- | basctl/source/inc/baside3.hxx | 2 | ||||
-rw-r--r-- | basctl/source/inc/dlged.hxx | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/basctl/source/inc/baside3.hxx b/basctl/source/inc/baside3.hxx index 7654ef31f5d1..155748dcba2b 100644 --- a/basctl/source/inc/baside3.hxx +++ b/basctl/source/inc/baside3.hxx @@ -62,7 +62,7 @@ private: OUString aCurPath; protected: - virtual void Paint( vcl::RenderContext& rRenderContext, const Rectangle& ) SAL_OVERRIDE; + virtual void Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect) SAL_OVERRIDE; virtual void Resize() SAL_OVERRIDE; virtual void MouseButtonDown( const MouseEvent& rMEvt ) SAL_OVERRIDE; diff --git a/basctl/source/inc/dlged.hxx b/basctl/source/inc/dlged.hxx index 3b1c25b7faae..9309b911e147 100644 --- a/basctl/source/inc/dlged.hxx +++ b/basctl/source/inc/dlged.hxx @@ -31,6 +31,7 @@ #include <vcl/timer.hxx> #include <vcl/idle.hxx> #include <vcl/vclptr.hxx> +#include <vcl/window.hxx> #include <boost/scoped_ptr.hpp> @@ -184,7 +185,7 @@ public: void MouseButtonDown( const MouseEvent& rMEvt ); void MouseButtonUp( const MouseEvent& rMEvt ); void MouseMove( const MouseEvent& rMEvt ); - void Paint( const Rectangle& rRect ); + void Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect); bool KeyInput( const KeyEvent& rKEvt ); void SetMode (Mode eMode); |