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

Libreoffice Gerrit user logerrit at kemper.freedesktop.org
Wed Feb 13 06:47:31 UTC 2019


 sfx2/source/doc/objmisc.cxx |    5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

New commits:
commit 6975073dc1e44025cd7863feadac5d52443a268e
Author:     Matteo Casalin <matteo.casalin at yahoo.com>
AuthorDate: Sat Feb 9 18:23:43 2019 +0100
Commit:     Matteo Casalin <matteo.casalin at yahoo.com>
CommitDate: Wed Feb 13 07:47:04 2019 +0100

    Use indexed getToken() and fix integer type
    
    nType was defined as sal_uInt32, but initialized by a toInt32
    and provided to setAutoloadSecs() which accepts sal_Int32.
    
    Change-Id: I78eb5426ddab7726ee538005cc3aa732b66ce1bf
    Reviewed-on: https://gerrit.libreoffice.org/67628
    Tested-by: Jenkins
    Reviewed-by: Matteo Casalin <matteo.casalin at yahoo.com>

diff --git a/sfx2/source/doc/objmisc.cxx b/sfx2/source/doc/objmisc.cxx
index 84e0b6660f49..bb5553d4991c 100644
--- a/sfx2/source/doc/objmisc.cxx
+++ b/sfx2/source/doc/objmisc.cxx
@@ -1432,8 +1432,9 @@ void SfxHeaderAttributes_Impl::SetAttribute( const SvKeyValue& rKV )
     const OUString& aValue = rKV.GetValue();
     if( rKV.GetKey().equalsIgnoreAsciiCase("refresh") && !rKV.GetValue().isEmpty() )
     {
-        sal_uInt32 nTime = aValue.getToken(  0, ';' ).toInt32() ;
-        const OUString aURL = comphelper::string::strip(aValue.getToken( 1, ';' ), ' ');
+        sal_Int32 nIdx{ 0 };
+        const sal_Int32 nTime{ aValue.getToken( 0, ';', nIdx ).toInt32() };
+        const OUString aURL{ comphelper::string::strip(aValue.getToken( 0, ';', nIdx ), ' ') };
         uno::Reference<document::XDocumentProperties> xDocProps(
             pDoc->getDocProperties());
         if( aURL.startsWithIgnoreAsciiCase( "url=" ) )


More information about the Libreoffice-commits mailing list