summaryrefslogtreecommitdiff
path: root/dbaccess
diff options
context:
space:
mode:
authorMichael Stahl <mst@apache.org>2011-08-28 22:23:03 +0000
committerMichael Stahl <mst@apache.org>2011-08-28 22:23:03 +0000
commit79fbe8110d9869c400775f6d81e413bacb6bdb9b (patch)
tree0354bfe03fe327c583b5c50d8df9c6c835a097ae /dbaccess
parentb63dec716d1ccb1eb9357ad35815be02a0e3bfe7 (diff)
fix up code so it builds with GCC 4.6:
put user-defined default constructors in some classes. remove "mutable" from reference variables. include stddef.h where size_t or ptrdiff_t was not defined.
Diffstat (limited to 'dbaccess')
-rw-r--r--dbaccess/source/core/dataaccess/documentdefinition.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/core/dataaccess/documentdefinition.hxx b/dbaccess/source/core/dataaccess/documentdefinition.hxx
index 76427ea78baf..438774c0cd03 100644
--- a/dbaccess/source/core/dataaccess/documentdefinition.hxx
+++ b/dbaccess/source/core/dataaccess/documentdefinition.hxx
@@ -397,7 +397,7 @@ private:
ODocumentDefinition& m_rDocumentDefinition;
const ::com::sun::star::uno::Any m_aOldValue;
const ::com::sun::star::uno::Any m_aNewValue;
- mutable ::osl::ResettableMutexGuard& m_rClearForNotify;
+ ::osl::ResettableMutexGuard& m_rClearForNotify;
void impl_fireEvent_throw( const sal_Bool i_bVetoable );
};