summaryrefslogtreecommitdiff
path: root/svl/source/misc/fstathelper.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svl/source/misc/fstathelper.cxx')
-rw-r--r--svl/source/misc/fstathelper.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/svl/source/misc/fstathelper.cxx b/svl/source/misc/fstathelper.cxx
index a9781b03e94c..ce804988a52c 100644
--- a/svl/source/misc/fstathelper.cxx
+++ b/svl/source/misc/fstathelper.cxx
@@ -31,7 +31,7 @@ using namespace ::com::sun::star::ucb;
using namespace ::rtl;
bool FStatHelper::GetModifiedDateTimeOfFile( const OUString& rURL,
- Date* pDate, Time* pTime )
+ Date* pDate, tools::Time* pTime )
{
bool bRet = false;
try
@@ -48,7 +48,7 @@ bool FStatHelper::GetModifiedDateTimeOfFile( const OUString& rURL,
if( pDate )
*pDate = Date( pDT->Day, pDT->Month, pDT->Year );
if( pTime )
- *pTime = Time( pDT->Hours, pDT->Minutes,
+ *pTime = tools::Time( pDT->Hours, pDT->Minutes,
pDT->Seconds, pDT->NanoSeconds );
}
}