summaryrefslogtreecommitdiffstats
path: root/binfilter/bf_svtools/source/misc1/svt_fstathelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'binfilter/bf_svtools/source/misc1/svt_fstathelper.cxx')
-rw-r--r--binfilter/bf_svtools/source/misc1/svt_fstathelper.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/binfilter/bf_svtools/source/misc1/svt_fstathelper.cxx b/binfilter/bf_svtools/source/misc1/svt_fstathelper.cxx
index 971045453..effb15278 100644
--- a/binfilter/bf_svtools/source/misc1/svt_fstathelper.cxx
+++ b/binfilter/bf_svtools/source/misc1/svt_fstathelper.cxx
@@ -17,6 +17,7 @@
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
+#include <comphelper/processfactory.hxx>
#include <tools/date.hxx>
#include <tools/time.hxx>
#include <bf_tools/string.hxx>
@@ -41,7 +42,8 @@ sal_Bool GetModifiedDateTimeOfFile( const UniString& rURL,
try
{
::ucbhelper::Content aTestContent( rURL,
- uno::Reference< XCommandEnvironment > ());
+ uno::Reference< XCommandEnvironment > (),
+ comphelper::getProcessComponentContext());
uno::Any aAny = aTestContent.getPropertyValue(
OUString( RTL_CONSTASCII_USTRINGPARAM( "DateModified" )) );
if( aAny.hasValue() )
@@ -68,7 +70,8 @@ sal_Bool IsDocument( const UniString& rURL )
try
{
::ucbhelper::Content aTestContent( rURL,
- uno::Reference< XCommandEnvironment > ());
+ uno::Reference< XCommandEnvironment > (),
+ comphelper::getProcessComponentContext());
bExist = aTestContent.isDocument();
}
catch(...)