diff options
author | Christina Rossmanith <ChrRossmanith@web.de> | 2011-04-13 20:52:55 +0200 |
---|---|---|
committer | Christina Rossmanith <ChrRossmanith@web.de> | 2011-04-19 20:42:51 +0200 |
commit | 1913e11aebe3da33c64c3de24106232ff02e699f (patch) | |
tree | 54a2ed55c4b38abc5dd2c93747aab2c5c9e56f09 /svtools/source/misc/filechangedchecker.cxx | |
parent | 3d9c2aeec9cabfb25cbed5e99bb242792dcd8f40 (diff) |
remove FileStatusMask_XXX in favour of osl_FileStatus_Mask_XXX (libs-gui)
Diffstat (limited to 'svtools/source/misc/filechangedchecker.cxx')
-rw-r--r-- | svtools/source/misc/filechangedchecker.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/misc/filechangedchecker.cxx b/svtools/source/misc/filechangedchecker.cxx index abd0f3439c81..6a3d04107420 100644 --- a/svtools/source/misc/filechangedchecker.cxx +++ b/svtools/source/misc/filechangedchecker.cxx @@ -67,7 +67,7 @@ bool FileChangedChecker::getCurrentModTime(TimeValue& o_rValue) const // Retrieve the status - we are only interested in last File // Modified time - osl::FileStatus aStatus( FileStatusMask_ModifyTime ); + osl::FileStatus aStatus( osl_FileStatus_Mask_ModifyTime ); if( osl::FileBase::E_None != aItem.getFileStatus(aStatus) ) return false; |