diff options
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/baside2b.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index 06c7573095b2..e4ae127660c7 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -915,12 +915,12 @@ void EditorWindow::SetupAndShowCodeCompleteWnd( const std::vector< OUString >& a pEditView->GetWindow()->GrabFocus(); } -void EditorWindow::Paint( vcl::RenderContext& /*rRenderContext*/, const Rectangle& rRect ) +void EditorWindow::Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect) { - if ( !pEditEngine ) // We need it now at latest + if (!pEditEngine) // We need it now at latest CreateEditEngine(); - pEditView->Paint( rRect ); + pEditView->Paint(rRenderContext, rRect); } void EditorWindow::LoseFocus() |