diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2019-08-19 00:30:27 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2019-08-19 09:43:14 +0200 |
commit | 5c35913309120038b6c6385854a9fd97b3ee76d2 (patch) | |
tree | 6e16e6160000ee709f8a623835492e5a4f40aeb1 /odk | |
parent | 4ca566f215c8bd246351360ae7e3c943f2e9bf9a (diff) |
Fix typos
Change-Id: I0b5182a3cec87ee44b7467d6e8e3d1c21ce93ac2
Reviewed-on: https://gerrit.libreoffice.org/77680
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'odk')
-rw-r--r-- | odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx index 4db2f20a1e47..1734031e11d9 100644 --- a/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx +++ b/odk/examples/DevelopersGuide/Database/DriverSkeleton/SConnection.cxx @@ -185,7 +185,7 @@ void SAL_CALL OConnection::setAutoCommit( sal_Bool autoCommit ) throw(SQLExcepti { ::osl::MutexGuard aGuard( m_aMutex ); checkDisposed(OConnection_BASE::rBHelper.bDisposed); - // here you have to set your commit mode please have a look at the jdbc documentation to get a clear explanation + // here you have to set your commit mode please have a look at the jdbc documentation to get a clear explanation } sal_Bool SAL_CALL OConnection::getAutoCommit( ) throw(SQLException, RuntimeException) @@ -203,7 +203,7 @@ void SAL_CALL OConnection::commit( ) throw(SQLException, RuntimeException) ::osl::MutexGuard aGuard( m_aMutex ); checkDisposed(OConnection_BASE::rBHelper.bDisposed); - // when you database does support transactions you should commit here + // when your database does support transactions you should commit here } void SAL_CALL OConnection::rollback( ) throw(SQLException, RuntimeException) |