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

Noel Grandin noel at peralex.com
Thu Mar 27 05:04:16 PDT 2014


 sfx2/source/dialog/dockwin.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit c5058e6b8edd092670ab5e16035ffce8f0dbcc24
Author: Noel Grandin <noel at peralex.com>
Date:   Thu Mar 27 14:02:59 2014 +0200

    fix extern declaration
    
    which I missed when I did commit
    ffca95023020a24eaff4ece1d4c7bedd469bfb78
    "sfx2/childwin.hxx: sal_Bool->bool"
    
    Change-Id: I75fe4a924cc477194453fac5386d23f23d3a1728

diff --git a/sfx2/source/dialog/dockwin.cxx b/sfx2/source/dialog/dockwin.cxx
index 54a7fdb..2c97838 100644
--- a/sfx2/source/dialog/dockwin.cxx
+++ b/sfx2/source/dialog/dockwin.cxx
@@ -54,8 +54,8 @@
 using namespace ::com::sun::star;
 
 // implemented in 'sfx2/source/appl/childwin.cxx'
-extern sal_Bool GetPosSizeFromString( const OUString& rStr, Point& rPos, Size& rSize );
-extern sal_Bool GetSplitSizeFromString( const OUString& rStr, Size& rSize );
+extern bool GetPosSizeFromString( const OUString& rStr, Point& rPos, Size& rSize );
+extern bool GetSplitSizeFromString( const OUString& rStr, Size& rSize );
 
 // If you want to change the number you also have to:
 // - Add new slot ids to sfxsids.hrc


More information about the Libreoffice-commits mailing list