diff options
Diffstat (limited to 'dbaccess/source/ui/querydesign/TableWindow.cxx')
-rw-r--r-- | dbaccess/source/ui/querydesign/TableWindow.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dbaccess/source/ui/querydesign/TableWindow.cxx b/dbaccess/source/ui/querydesign/TableWindow.cxx index f4e132493b0c..510dd533236c 100644 --- a/dbaccess/source/ui/querydesign/TableWindow.cxx +++ b/dbaccess/source/ui/querydesign/TableWindow.cxx @@ -193,7 +193,7 @@ void OTableWindow::FillListBox() } // mark all primary keys with special image - Image aPrimKeyImage = Image(StockImage::Yes, BMP_PRIMARY_KEY); + Image aPrimKeyImage(StockImage::Yes, BMP_PRIMARY_KEY); if (GetData()->IsShowAll()) { @@ -333,7 +333,7 @@ void OTableWindow::Paint(vcl::RenderContext& rRenderContext, const tools::Rectan tools::Rectangle OTableWindow::getSizingRect(const Point& _rPos,const Size& _rOutputSize) const { - tools::Rectangle aSizingRect = tools::Rectangle( GetPosPixel(), GetSizePixel() ); + tools::Rectangle aSizingRect( GetPosPixel(), GetSizePixel() ); if( m_nSizingFlags & SizingFlags::Top ) { |