diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-01-25 12:03:58 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-02-02 08:02:54 +0000 |
commit | 4978328534c0f759eea7d0c196046f1d53b06925 (patch) | |
tree | cf9dcd62c4f09dcd08115bbda2a8950678a38562 /scripting | |
parent | 1461ebbbb5d47d90e31f0945a4878a68fbee5213 (diff) |
convert method names in tools::SvRef to be more like our other..
reference classes, uno::Reference and rtl::Reference.
Specifically rename Is()->is() and Clear()->clear().
Change-Id: Icb7e05e2d09cb9977121508b837ba0961dabb4ae
Reviewed-on: https://gerrit.libreoffice.org/33576
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'scripting')
-rw-r--r-- | scripting/source/basprov/basscript.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripting/source/basprov/basscript.cxx b/scripting/source/basprov/basscript.cxx index f99f60f19423..f4136e14582f 100644 --- a/scripting/source/basprov/basscript.cxx +++ b/scripting/source/basprov/basscript.cxx @@ -162,7 +162,7 @@ namespace basprov Any aReturn; - if ( m_xMethod.Is() ) + if ( m_xMethod.is() ) { // check if compiled SbModule* pModule = static_cast< SbModule* >( m_xMethod->GetParent() ); @@ -212,7 +212,7 @@ namespace basprov xSbxVar->SetFlag( SbxFlagBits::Fixed ); } } - if ( xSbxParams.Is() ) + if ( xSbxParams.is() ) m_xMethod->SetParameters( xSbxParams.get() ); // call method @@ -242,7 +242,7 @@ namespace basprov } // get output parameters - if ( xSbxParams.Is() ) + if ( xSbxParams.is() ) { SbxInfo* pInfo_ = m_xMethod->GetInfo(); if ( pInfo_ ) |