Kaydet (Commit) 958442c8 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Add a few SAL_INFOs

Change-Id: Ibdb013f4eeee8a2b2e29e3adb56943b5fccf9772
üst 951aefb2
......@@ -56,7 +56,10 @@ VbaDocumentBase::VbaDocumentBase( uno::Sequence< uno::Any> const & args,
OUString
VbaDocumentBase::getName()
{
return VbaDocumentBase::getNameFromModel( getModel() );
OUString sName = VbaDocumentBase::getNameFromModel( getModel() );
SAL_INFO("vbahelper", "VbaDocumentBase::getName: '" << sName << "'");
return sName;
}
OUString VbaDocumentBase::getNameFromModel( const uno::Reference< frame::XModel >& xModel )
......@@ -87,6 +90,8 @@ VbaDocumentBase::getPath()
sURL = sURL.copy( 0, sURL.getLength() - aURL.GetLastName().getLength() - 1 );
::osl::File::getSystemPathFromFileURL( sURL, sPath );
}
SAL_INFO("vbahelper", "VbaDocumentBase::getPath: '" << sPath << "'");
return sPath;
}
......@@ -104,6 +109,7 @@ VbaDocumentBase::getFullName()
OUString sPath = getName();
//::osl::File::getSystemPathFromFileURL( getModel()->getURL(), sPath );
SAL_INFO("vbahelper", "VbaDocumentBase::getFullName: '" << sPath << "'");
return sPath;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment