summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristina Rossmanith <ChrRossmanith@web.de>2011-04-19 22:11:07 +0200
committerChristina Rossmanith <ChrRossmanith@web.de>2011-04-30 17:43:17 +0200
commit9cc6dfd98fbdc00e7eb099292b3be5caf7535291 (patch)
tree1b4d20878c2a02b707632ce0951aca78f8a3edad
parentce6738ec7b674dc0ab6202d6f8ae252cfdd8c328 (diff)
remove Attribute_XXX in favor of osl_File_Attribute_XXX (desktop)
-rw-r--r--basic/source/runtime/methods.cxx2
-rw-r--r--desktop/source/app/userinstall.cxx2
-rw-r--r--sfx2/source/doc/docfile.cxx10
-rw-r--r--ucb/source/ucp/file/shell.cxx24
4 files changed, 19 insertions, 19 deletions
diff --git a/basic/source/runtime/methods.cxx b/basic/source/runtime/methods.cxx
index 39737fbcf9f0..a5d7a8e74295 100644
--- a/basic/source/runtime/methods.cxx
+++ b/basic/source/runtime/methods.cxx
@@ -2920,7 +2920,7 @@ RTLFUNC(GetAttr)
FileStatus aFileStatus( osl_FileStatus_Mask_Attributes | osl_FileStatus_Mask_Type );
aItem.getFileStatus( aFileStatus );
sal_uInt64 nAttributes = aFileStatus.getAttributes();
- sal_Bool bReadOnly = (nAttributes & Attribute_ReadOnly) != 0;
+ sal_Bool bReadOnly = (nAttributes & osl_File_Attribute_ReadOnly) != 0;
FileStatus::Type aType = aFileStatus.getFileType();
sal_Bool bDirectory = isFolder( aType );
diff --git a/desktop/source/app/userinstall.cxx b/desktop/source/app/userinstall.cxx
index b88355910d51..592821208a34 100644
--- a/desktop/source/app/userinstall.cxx
+++ b/desktop/source/app/userinstall.cxx
@@ -240,7 +240,7 @@ namespace desktop {
#ifdef UNIX
// set safer permissions for the user directory by default
- File::setAttributes(aUserPath, Attribute_OwnWrite| Attribute_OwnRead| Attribute_OwnExe);
+ File::setAttributes(aUserPath, osl_File_Attribute_OwnWrite| osl_File_Attribute_OwnRead| osl_File_Attribute_OwnExe);
#endif
// copy data from shared data directory of base installation
diff --git a/sfx2/source/doc/docfile.cxx b/sfx2/source/doc/docfile.cxx
index c61f68f21266..2a1bc48c0b5e 100644
--- a/sfx2/source/doc/docfile.cxx
+++ b/sfx2/source/doc/docfile.cxx
@@ -3332,11 +3332,11 @@ sal_Bool SfxMedium::SetWritableForUserOnly( const ::rtl::OUString& aURL )
{
sal_uInt64 nAttributes = aFileStatus.getAttributes();
- nAttributes &= ~(Attribute_OwnWrite |
- Attribute_GrpWrite |
- Attribute_OthWrite |
- Attribute_ReadOnly);
- nAttributes |= Attribute_OwnWrite;
+ nAttributes &= ~(osl_File_Attribute_OwnWrite |
+ osl_File_Attribute_GrpWrite |
+ osl_File_Attribute_OthWrite |
+ osl_File_Attribute_ReadOnly);
+ nAttributes |= osl_File_Attribute_OwnWrite;
bResult = ( osl::File::setAttributes( aURL, nAttributes ) == ::osl::FileBase::E_None );
}
diff --git a/ucb/source/ucp/file/shell.cxx b/ucb/source/ucp/file/shell.cxx
index 476248420f22..0c7c0f30953f 100644
--- a/ucb/source/ucp/file/shell.cxx
+++ b/ucb/source/ucp/file/shell.cxx
@@ -951,23 +951,23 @@ shell::setv( const rtl::OUString& aUnqPath,
if(err == osl::FileBase::E_None) {
if(values[i].Name == IsReadOnly)
{
- nAttributes &= ~(Attribute_OwnWrite |
- Attribute_GrpWrite |
- Attribute_OthWrite |
- Attribute_ReadOnly);
+ nAttributes &= ~(osl_File_Attribute_OwnWrite |
+ osl_File_Attribute_GrpWrite |
+ osl_File_Attribute_OthWrite |
+ osl_File_Attribute_ReadOnly);
if(value)
- nAttributes |= Attribute_ReadOnly;
+ nAttributes |= osl_File_Attribute_ReadOnly;
else
nAttributes |= (
- Attribute_OwnWrite |
- Attribute_GrpWrite |
- Attribute_OthWrite);
+ osl_File_Attribute_OwnWrite |
+ osl_File_Attribute_GrpWrite |
+ osl_File_Attribute_OthWrite);
}
else if(values[i].Name == IsHidden)
{
- nAttributes &= ~(Attribute_Hidden);
+ nAttributes &= ~(osl_File_Attribute_Hidden);
if(value)
- nAttributes |= Attribute_Hidden;
+ nAttributes |= osl_File_Attribute_Hidden;
}
err = osl::File::setAttributes(
aUnqPath,nAttributes);
@@ -2426,7 +2426,7 @@ shell::commit( const shell::ContentMap::iterator& it,
if( aFileStatus.isValid( osl_FileStatus_Mask_Attributes ) )
{
sal_uInt64 Attr = aFileStatus.getAttributes();
- sal_Bool readonly = ( Attr & Attribute_ReadOnly ) != 0;
+ sal_Bool readonly = ( Attr & osl_File_Attribute_ReadOnly ) != 0;
it1->setValue( uno::makeAny( readonly ) );
}
}
@@ -2437,7 +2437,7 @@ shell::commit( const shell::ContentMap::iterator& it,
if( aFileStatus.isValid( osl_FileStatus_Mask_Attributes ) )
{
sal_uInt64 Attr = aFileStatus.getAttributes();
- sal_Bool ishidden = ( Attr & Attribute_Hidden ) != 0;
+ sal_Bool ishidden = ( Attr & osl_File_Attribute_Hidden ) != 0;
it1->setValue( uno::makeAny( ishidden ) );
}
}