summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/file
diff options
context:
space:
mode:
Diffstat (limited to 'ucb/source/ucp/file')
-rw-r--r--ucb/source/ucp/file/bc.hxx4
-rw-r--r--ucb/source/ucp/file/filinsreq.hxx4
-rw-r--r--ucb/source/ucp/file/filrow.hxx2
-rw-r--r--ucb/source/ucp/file/filrset.hxx6
-rw-r--r--ucb/source/ucp/file/filtask.hxx10
5 files changed, 13 insertions, 13 deletions
diff --git a/ucb/source/ucp/file/bc.hxx b/ucb/source/ucp/file/bc.hxx
index 655bb3a46a07..b04a1c90309c 100644
--- a/ucb/source/ucp/file/bc.hxx
+++ b/ucb/source/ucp/file/bc.hxx
@@ -201,8 +201,8 @@ namespace fileaccess {
JustInserted = 2,
Deleted = 4,
FullFeatured = 8 };
- bool const m_bFolder;
- sal_uInt16 m_nState;
+ bool m_bFolder;
+ sal_uInt16 m_nState;
osl::Mutex m_aMutex;
diff --git a/ucb/source/ucp/file/filinsreq.hxx b/ucb/source/ucp/file/filinsreq.hxx
index 035b51a05ea8..661852681ecd 100644
--- a/ucb/source/ucp/file/filinsreq.hxx
+++ b/ucb/source/ucp/file/filinsreq.hxx
@@ -129,8 +129,8 @@ class XInteractionSupplyNameImpl : public cppu::WeakImplHelper<
private:
- XInteractionSupplyNameImpl* const p1;
- XInteractionAbortImpl* const p2;
+ XInteractionSupplyNameImpl* p1;
+ XInteractionAbortImpl* p2;
css::uno::Reference<css::task::XInteractionRequest> m_xRequest;
diff --git a/ucb/source/ucp/file/filrow.hxx b/ucb/source/ucp/file/filrow.hxx
index 301c016cd823..47ba891cab58 100644
--- a/ucb/source/ucp/file/filrow.hxx
+++ b/ucb/source/ucp/file/filrow.hxx
@@ -101,7 +101,7 @@ namespace fileaccess {
osl::Mutex m_aMutex;
css::uno::Sequence< css::uno::Any > m_aValueMap;
bool m_nWasNull;
- TaskManager* const m_pMyShell;
+ TaskManager* m_pMyShell;
css::uno::Reference< css::script::XTypeConverter > m_xTypeConverter;
bool isIndexOutOfBounds( sal_Int32 nIndex );
diff --git a/ucb/source/ucp/file/filrset.hxx b/ucb/source/ucp/file/filrset.hxx
index 2c93713c1330..1979abeab54c 100644
--- a/ucb/source/ucp/file/filrset.hxx
+++ b/ucb/source/ucp/file/filrset.hxx
@@ -393,7 +393,7 @@ class XResultSet_impl :
bool m_nIsOpen;
sal_Int32 m_nRow;
bool m_nWasNull;
- sal_Int32 const m_nOpenMode;
+ sal_Int32 m_nOpenMode;
bool m_bRowCountFinal;
typedef std::vector< css::uno::Reference< css::ucb::XContentIdentifier > > IdentSet;
@@ -405,8 +405,8 @@ class XResultSet_impl :
const OUString m_aBaseDirectory;
osl::Directory m_aFolder;
- css::uno::Sequence< css::beans::Property > const m_sProperty;
- css::uno::Sequence< css::ucb::NumberedSortingInfo > const m_sSortingInfo;
+ css::uno::Sequence< css::beans::Property > m_sProperty;
+ css::uno::Sequence< css::ucb::NumberedSortingInfo > m_sSortingInfo;
osl::Mutex m_aMutex;
osl::Mutex m_aEventListenerMutex;
diff --git a/ucb/source/ucp/file/filtask.hxx b/ucb/source/ucp/file/filtask.hxx
index 94f0b59ac208..78e7e8c8219a 100644
--- a/ucb/source/ucp/file/filtask.hxx
+++ b/ucb/source/ucp/file/filtask.hxx
@@ -157,13 +157,13 @@ namespace fileaccess
class MyProperty
{
private:
- OUString const PropertyName;
- sal_Int32 const Handle;
- bool const isNative;
- css::uno::Type const Typ; // Duplicates information in Value
+ OUString PropertyName;
+ sal_Int32 Handle;
+ bool isNative;
+ css::uno::Type Typ; // Duplicates information in Value
css::uno::Any Value;
css::beans::PropertyState State;
- sal_Int16 const Attributes;
+ sal_Int16 Attributes;
public:
explicit MyProperty( const OUString& thePropertyName );
MyProperty( bool theIsNative,