summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorMike Kaganski <mike.kaganski@collabora.com>2019-12-09 14:39:59 +0100
committerMike Kaganski <mike.kaganski@collabora.com>2019-12-09 15:34:38 +0100
commit919375354c769ac9cc6a49ebfbfb84aa0f15df39 (patch)
treeca3f5a727fd1a8958b9218d50b22469666c431d9 /basctl
parentd79a41a02cd46c50cab08ba1a5d5b213b6843251 (diff)
GetSource32 and GetSource are identical
Change-Id: Ia7c6687586b5a37b7556f1bae9ffd5b5b954db47 Reviewed-on: https://gerrit.libreoffice.org/84747 Tested-by: Jenkins Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com>
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/basobj2.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basctl/source/basicide/basobj2.cxx b/basctl/source/basicide/basobj2.cxx
index 9a9656d0d160..77e9afe9f795 100644
--- a/basctl/source/basicide/basobj2.cxx
+++ b/basctl/source/basicide/basobj2.cxx
@@ -370,7 +370,7 @@ Sequence< OUString > GetMethodNames( const ScriptDocument& rDocument, const OUSt
SbModuleRef xModule;
// Only reparse modules if ScriptDocument source is out of sync
// with basic's Module
- if ( !pMod || pMod->GetSource() != aOUSource )
+ if ( !pMod || pMod->GetSource32() != aOUSource )
{
xModule = new SbModule( rModName );
xModule->SetSource32( aOUSource );
@@ -420,7 +420,7 @@ bool HasMethod (
SbModuleRef xModule;
// Only reparse modules if ScriptDocument source is out of sync
// with basic's Module
- if ( !pMod || pMod->GetSource() != aOUSource )
+ if ( !pMod || pMod->GetSource32() != aOUSource )
{
xModule = new SbModule( rModName );
xModule->SetSource32( aOUSource );