diff options
author | Christina Rossmanith <ChrRossmanith@web.de> | 2011-04-13 21:06:55 +0200 |
---|---|---|
committer | Christina Rossmanith <ChrRossmanith@web.de> | 2011-04-19 20:36:11 +0200 |
commit | b0b3e5fdf811fa5939366f378a22755fb80e51ab (patch) | |
tree | 23a560589b182bafd33621adfdcfabd1c1e7ceff /desktop/source/pkgchk | |
parent | 8a75a1f07d0c575ef08ab8385df3ef45e8552df1 (diff) |
remove FileStatusMask_XXX in favour of osl_FileStatus_Mask_XXX (libs-core)
Diffstat (limited to 'desktop/source/pkgchk')
-rw-r--r-- | desktop/source/pkgchk/unopkg/unopkg_misc.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/desktop/source/pkgchk/unopkg/unopkg_misc.cxx b/desktop/source/pkgchk/unopkg/unopkg_misc.cxx index 2021e7698b9b..b4993e24f4b3 100644 --- a/desktop/source/pkgchk/unopkg/unopkg_misc.cxx +++ b/desktop/source/pkgchk/unopkg/unopkg_misc.cxx @@ -544,7 +544,7 @@ bool hasNoFolder(OUString const & folderUrl) osl::File::RC rcNext = osl::File::E_None; while ( (rcNext = dir.getNextItem(i)) == osl::File::E_None) { - osl::FileStatus stat(FileStatusMask_Type); + osl::FileStatus stat(osl_FileStatus_Mask_Type); if (i.getFileStatus(stat) == osl::File::E_None) { if (stat.getFileType() == osl::FileStatus::Directory) @@ -596,7 +596,7 @@ void removeFolder(OUString const & folderUrl) ::osl::File::RC rcNext = ::osl::File::E_None; while ( (rcNext = dir.getNextItem(i)) == ::osl::File::E_None) { - ::osl::FileStatus stat(FileStatusMask_Type | FileStatusMask_FileURL); + ::osl::FileStatus stat(osl_FileStatus_Mask_Type | osl_FileStatus_Mask_FileURL); if (i.getFileStatus(stat) == ::osl::File::E_None) { ::osl::FileStatus::Type t = stat.getFileType(); |