diff options
author | Andreas Bregas <ab@openoffice.org> | 2010-09-09 15:53:39 +0200 |
---|---|---|
committer | Andreas Bregas <ab@openoffice.org> | 2010-09-09 15:53:39 +0200 |
commit | a52cf2d300782298b39977331bb7bc015daedd7c (patch) | |
tree | fcd1faed0fc678990a80654e4677f0d81b0e00f0 /vbahelper | |
parent | d3ad5e48cac0e7c2c0e2d9be32b81582c3de4271 (diff) |
mib19: #163573# Fix NativeObjectWrapper implementation + VbaDocumentBase::getFullName()
Diffstat (limited to 'vbahelper')
-rw-r--r-- | vbahelper/source/vbahelper/vbadocumentbase.cxx | 4 |
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; } |