summaryrefslogtreecommitdiffstats
path: root/vbahelper
diff options
context:
space:
mode:
authorAndreas Bregas <ab@openoffice.org>2010-09-09 15:53:39 +0200
committerAndreas Bregas <ab@openoffice.org>2010-09-09 15:53:39 +0200
commita52cf2d300782298b39977331bb7bc015daedd7c (patch)
treefcd1faed0fc678990a80654e4677f0d81b0e00f0 /vbahelper
parentmib19: #163576# Automatically reinstantiate objects declared with Dim As New (diff)
downloadcore-a52cf2d300782298b39977331bb7bc015daedd7c.tar.gz
core-a52cf2d300782298b39977331bb7bc015daedd7c.zip
mib19: #163573# Fix NativeObjectWrapper implementation + VbaDocumentBase::getFullName()
Diffstat (limited to 'vbahelper')
-rw-r--r--vbahelper/source/vbahelper/vbadocumentbase.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/vbahelper/source/vbahelper/vbadocumentbase.cxx b/vbahelper/source/vbahelper/vbadocumentbase.cxx
index 894a9f55eed2..0df38b003556 100644
--- a/vbahelper/source/vbahelper/vbadocumentbase.cxx
+++ b/vbahelper/source/vbahelper/vbadocumentbase.cxx
@@ -97,8 +97,8 @@ VbaDocumentBase::getPath() throw (uno::RuntimeException)
::rtl::OUString
VbaDocumentBase::getFullName() throw (uno::RuntimeException)
{
- rtl::OUString sPath;
- ::osl::File::getSystemPathFromFileURL( getModel()->getURL(), sPath );
+ rtl::OUString sPath = getName();
+ //::osl::File::getSystemPathFromFileURL( getModel()->getURL(), sPath );
return sPath;
}