summaryrefslogtreecommitdiff
path: root/package
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-10-18 11:20:47 +0200
committerJulien Nabet <serval2412@yahoo.fr>2018-10-18 17:16:25 +0200
commita51c1829cb90303f28011428873ff9160fdd3152 (patch)
tree7c8ef5918ffe32d3560565411fd8c982741f1e0c /package
parentc1870900196eac3f4852eb7396a3479e2d20008b (diff)
Fix typo in code
It passed "make check" on Linux Change-Id: I20e2ecce45ead161a3f95b511416044af4e04290 Reviewed-on: https://gerrit.libreoffice.org/61917 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'package')
-rw-r--r--package/source/xstor/owriteablestream.cxx4
-rw-r--r--package/source/xstor/xstorage.cxx4
-rw-r--r--package/source/xstor/xstorage.hxx2
3 files changed, 5 insertions, 5 deletions
diff --git a/package/source/xstor/owriteablestream.cxx b/package/source/xstor/owriteablestream.cxx
index 2810f9682302..c14e2f47cb5e 100644
--- a/package/source/xstor/owriteablestream.cxx
+++ b/package/source/xstor/owriteablestream.cxx
@@ -3113,7 +3113,7 @@ void OWriteStream::BroadcastTransaction( sal_Int8 nMessage )
case STOR_MESS_PRECOMMIT:
static_cast<embed::XTransactionListener*>( pIterator.next( ) )->preCommit( aSource );
break;
- case STOR_MESS_COMMITED:
+ case STOR_MESS_COMMITTED:
static_cast<embed::XTransactionListener*>( pIterator.next( ) )->commited( aSource );
break;
case STOR_MESS_PREREVERT:
@@ -3179,7 +3179,7 @@ void SAL_CALL OWriteStream::commit()
aCaught );
}
- BroadcastTransaction( STOR_MESS_COMMITED );
+ BroadcastTransaction( STOR_MESS_COMMITTED );
}
void SAL_CALL OWriteStream::revert()
diff --git a/package/source/xstor/xstorage.cxx b/package/source/xstor/xstorage.cxx
index 81e159fad77e..562d040febe5 100644
--- a/package/source/xstor/xstorage.cxx
+++ b/package/source/xstor/xstorage.cxx
@@ -1985,7 +1985,7 @@ void OStorage::BroadcastTransaction( sal_Int8 nMessage )
case STOR_MESS_PRECOMMIT:
static_cast<embed::XTransactionListener*>( pIterator.next( ) )->preCommit( aSource );
break;
- case STOR_MESS_COMMITED:
+ case STOR_MESS_COMMITTED:
static_cast<embed::XTransactionListener*>( pIterator.next( ) )->commited( aSource );
break;
case STOR_MESS_PREREVERT:
@@ -3608,7 +3608,7 @@ void SAL_CALL OStorage::commit()
if ( xParentModif.is() )
xParentModif->setModified( true );
- BroadcastTransaction( STOR_MESS_COMMITED );
+ BroadcastTransaction( STOR_MESS_COMMITTED );
}
void SAL_CALL OStorage::revert()
diff --git a/package/source/xstor/xstorage.hxx b/package/source/xstor/xstorage.hxx
index 8cf9d5ac5cfa..23d116f7bd51 100644
--- a/package/source/xstor/xstorage.hxx
+++ b/package/source/xstor/xstorage.hxx
@@ -68,7 +68,7 @@ namespace com { namespace sun { namespace star { namespace uno {
#define RELINFO_CHANGED_BROKEN 7
#define STOR_MESS_PRECOMMIT 1
-#define STOR_MESS_COMMITED 2
+#define STOR_MESS_COMMITTED 2
#define STOR_MESS_PREREVERT 3
#define STOR_MESS_REVERTED 4