svx/source/dialog/dlgctrl.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 72d99207d2e1dece80d632283b9ed95d1203513f
Author:     Noel Grandin <noel.gran...@collabora.co.uk>
AuthorDate: Thu Aug 21 13:04:10 2025 +0200
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Thu Aug 21 14:14:09 2025 +0200

    tdf#168014 pivot point and base point control in Position&Size dialog is 
wrong
    
    regression from
        commit 01a31f689fff39dfaed8864b765b89696c361b62
        Author: Noel Grandin <noelgran...@gmail.com>
        Date:   Sat Aug 9 20:04:00 2025 +0200
        no need to use unique_ptr for Bitmap
    
    Change-Id: Ie7e0972942d5835f9f5118c88f5dd2a33dfcd6f7
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/189992
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>
    Tested-by: Jenkins

diff --git a/svx/source/dialog/dlgctrl.cxx b/svx/source/dialog/dlgctrl.cxx
index 84e5ba5a34f5..cdc2396af9dc 100644
--- a/svx/source/dialog/dlgctrl.cxx
+++ b/svx/source/dialog/dlgctrl.cxx
@@ -55,7 +55,7 @@ using namespace ::com::sun::star::accessibility;
 
 Bitmap& SvxRectCtl::GetRectBitmap()
 {
-    if( !maBitmap.IsEmpty() )
+    if( maBitmap.IsEmpty() )
         InitRectBitmap();
 
     return maBitmap;

Reply via email to