diff options
Diffstat (limited to 'dbaccess/source/ui')
-rw-r--r-- | dbaccess/source/ui/app/AppDetailPageHelper.cxx | 4 | ||||
-rw-r--r-- | dbaccess/source/ui/browser/dataview.cxx | 4 | ||||
-rw-r--r-- | dbaccess/source/ui/querydesign/TableWindow.cxx | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/dbaccess/source/ui/app/AppDetailPageHelper.cxx b/dbaccess/source/ui/app/AppDetailPageHelper.cxx index 62510e98a7cf..31b54b1263df 100644 --- a/dbaccess/source/ui/app/AppDetailPageHelper.cxx +++ b/dbaccess/source/ui/app/AppDetailPageHelper.cxx @@ -1295,9 +1295,9 @@ bool OPreviewWindow::ImplGetGraphicCenterRect( const Graphic& rGraphic, Rectangl return bRet; } -void OPreviewWindow::Paint( vcl::RenderContext& /*rRenderContext*/, const Rectangle& rRect ) +void OPreviewWindow::Paint(vcl::RenderContext& rRenderContext, const Rectangle& rRect) { - Window::Paint( rRect ); + Window::Paint(rRenderContext, rRect); if( ImplGetGraphicCenterRect( m_aGraphicObj.GetGraphic(), m_aPreviewRect ) ) { diff --git a/dbaccess/source/ui/browser/dataview.cxx b/dbaccess/source/ui/browser/dataview.cxx index 5a24a70ba025..d959262953d8 100644 --- a/dbaccess/source/ui/browser/dataview.cxx +++ b/dbaccess/source/ui/browser/dataview.cxx @@ -93,7 +93,7 @@ namespace dbaui { } - void ODataView::Paint( vcl::RenderContext& /*rRenderContext*/, const Rectangle& _rRect ) + void ODataView::Paint(vcl::RenderContext& rRenderContext, const Rectangle& _rRect) { // draw the background { @@ -102,7 +102,7 @@ namespace dbaui } // let the base class do anything it needs - Window::Paint( _rRect ); + Window::Paint(rRenderContext, _rRect); } void ODataView::resizeAll( const Rectangle& _rPlayground ) diff --git a/dbaccess/source/ui/querydesign/TableWindow.cxx b/dbaccess/source/ui/querydesign/TableWindow.cxx index 26ddb53b59b3..de29020efbce 100644 --- a/dbaccess/source/ui/querydesign/TableWindow.cxx +++ b/dbaccess/source/ui/querydesign/TableWindow.cxx @@ -312,10 +312,10 @@ void OTableWindow::DataChanged(const DataChangedEvent& rDCEvt) } } -void OTableWindow::Paint( vcl::RenderContext& /*rRenderContext*/, const Rectangle& rRect ) +void OTableWindow::Paint( vcl::RenderContext& rRenderContext, const Rectangle& rRect ) { - Rectangle aRect( Point(0,0), GetOutputSizePixel() ); - Window::Paint( rRect ); + Rectangle aRect(Point(0,0), GetOutputSizePixel()); + Window::Paint(rRenderContext, rRect); Draw3DBorder( aRect ); } |