[Libreoffice-commits] core.git: vcl/source

Tor Lillqvist tml at collabora.com
Fri Feb 28 01:30:48 PST 2014


 vcl/source/app/dbggui.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 5ce23eb9f12a52efcd7eb84d0b8ddc380d12eecb
Author: Tor Lillqvist <tml at collabora.com>
Date:   Fri Feb 28 11:27:59 2014 +0200

    WaE: implicit conversion (IntegralCast) from bool to 'long'
    
    Presumably RET_OK is what is meant here (that is how the code has worked,
    anyway, as RET_OK == 1 == sal_True).
    
    Change-Id: Ib6afffc606c6bc36b5ef4cf04991207c8c109973

diff --git a/vcl/source/app/dbggui.cxx b/vcl/source/app/dbggui.cxx
index 1eab532..d13dc81 100644
--- a/vcl/source/app/dbggui.cxx
+++ b/vcl/source/app/dbggui.cxx
@@ -973,7 +973,7 @@ IMPL_LINK( DbgDialog, ClickHdl, Button*, pButton )
                 ) );
             aBox.Execute();
         }
-        EndDialog( true );
+        EndDialog( RET_OK );
     }
     else if ( pButton == &maInfoButton )
     {


More information about the Libreoffice-commits mailing list