Kaydet (Commit) be75acef authored tarafından Michael Meeks's avatar Michael Meeks

Translate German comment.

Change-Id: I3d452ac218005b40568ec116ede9962cc1e60a18
üst 21c1e55c
...@@ -286,7 +286,7 @@ class Parser: ...@@ -286,7 +286,7 @@ class Parser:
"lingucomponent" : 1, "lingucomponent" : 1,
"linguistic" : 1, "linguistic" : 1,
"lotuswordpro" : 1, "lotuswordpro" : 1,
"mysqlc" : 0, # "mysqlc" : 1,
"o3tl" : 1, "o3tl" : 1,
"odk" : 1, "odk" : 1,
"officecfg" : 1, "officecfg" : 1,
......
...@@ -48,7 +48,6 @@ using namespace com::sun::star::io; ...@@ -48,7 +48,6 @@ using namespace com::sun::star::io;
using namespace com::sun::star::util; using namespace com::sun::star::util;
using ::osl::MutexGuard; using ::osl::MutexGuard;
/* {{{ OConnection::OCommonStatement() -I- */
OCommonStatement::OCommonStatement(OConnection* _pConnection, sql::Statement *_cppStatement) OCommonStatement::OCommonStatement(OConnection* _pConnection, sql::Statement *_cppStatement)
:OCommonStatement_IBase(m_aMutex) :OCommonStatement_IBase(m_aMutex)
,OPropertySetHelper(OCommonStatement_IBase::rBHelper) ,OPropertySetHelper(OCommonStatement_IBase::rBHelper)
...@@ -60,18 +59,12 @@ OCommonStatement::OCommonStatement(OConnection* _pConnection, sql::Statement *_c ...@@ -60,18 +59,12 @@ OCommonStatement::OCommonStatement(OConnection* _pConnection, sql::Statement *_c
OSL_TRACE("OCommonStatement::OCommonStatement"); OSL_TRACE("OCommonStatement::OCommonStatement");
m_pConnection->acquire(); m_pConnection->acquire();
} }
/* }}} */
/* {{{ OConnection::~OCommonStatement() -I- */
OCommonStatement::~OCommonStatement() OCommonStatement::~OCommonStatement()
{ {
OSL_TRACE("OCommonStatement::~OCommonStatement"); OSL_TRACE("OCommonStatement::~OCommonStatement");
} }
/* }}} */
/* {{{ OConnection::disposeResultSet() -I- */
void OCommonStatement::disposeResultSet() void OCommonStatement::disposeResultSet()
{ {
OSL_TRACE("OCommonStatement::disposeResultSet"); OSL_TRACE("OCommonStatement::disposeResultSet");
...@@ -79,10 +72,7 @@ void OCommonStatement::disposeResultSet() ...@@ -79,10 +72,7 @@ void OCommonStatement::disposeResultSet()
delete cppStatement; delete cppStatement;
cppStatement = NULL; cppStatement = NULL;
} }
/* }}} */
/* {{{ OConnection::disposing() -I- */
void OCommonStatement::disposing() void OCommonStatement::disposing()
{ {
OSL_TRACE("OCommonStatement::disposing"); OSL_TRACE("OCommonStatement::disposing");
...@@ -99,10 +89,7 @@ void OCommonStatement::disposing() ...@@ -99,10 +89,7 @@ void OCommonStatement::disposing()
dispose_ChildImpl(); dispose_ChildImpl();
OCommonStatement_IBase::disposing(); OCommonStatement_IBase::disposing();
} }
/* }}} */
/* {{{ OCommonStatement::queryInterface() -I- */
Any SAL_CALL OCommonStatement::queryInterface(const Type & rType) Any SAL_CALL OCommonStatement::queryInterface(const Type & rType)
throw(RuntimeException, std::exception) throw(RuntimeException, std::exception)
{ {
...@@ -113,10 +100,7 @@ Any SAL_CALL OCommonStatement::queryInterface(const Type & rType) ...@@ -113,10 +100,7 @@ Any SAL_CALL OCommonStatement::queryInterface(const Type & rType)
} }
return aRet; return aRet;
} }
/* }}} */
/* {{{ OCommonStatement::getTypes() -I- */
Sequence< Type > SAL_CALL OCommonStatement::getTypes() Sequence< Type > SAL_CALL OCommonStatement::getTypes()
throw(RuntimeException, std::exception) throw(RuntimeException, std::exception)
{ {
...@@ -127,10 +111,7 @@ Sequence< Type > SAL_CALL OCommonStatement::getTypes() ...@@ -127,10 +111,7 @@ Sequence< Type > SAL_CALL OCommonStatement::getTypes()
return concatSequences(aTypes.getTypes(), OCommonStatement_IBase::getTypes()); return concatSequences(aTypes.getTypes(), OCommonStatement_IBase::getTypes());
} }
/* }}} */
/* {{{ OCommonStatement::cancel() -I- */
void SAL_CALL OCommonStatement::cancel() void SAL_CALL OCommonStatement::cancel()
throw(RuntimeException, std::exception) throw(RuntimeException, std::exception)
{ {
...@@ -139,10 +120,7 @@ void SAL_CALL OCommonStatement::cancel() ...@@ -139,10 +120,7 @@ void SAL_CALL OCommonStatement::cancel()
checkDisposed(rBHelper.bDisposed); checkDisposed(rBHelper.bDisposed);
// cancel the current sql statement // cancel the current sql statement
} }
/* }}} */
/* {{{ OCommonStatement::close() -I- */
void SAL_CALL OCommonStatement::close() void SAL_CALL OCommonStatement::close()
throw(SQLException, RuntimeException, std::exception) throw(SQLException, RuntimeException, std::exception)
{ {
......
...@@ -171,8 +171,9 @@ namespace connectivity ...@@ -171,8 +171,9 @@ namespace connectivity
virtual ~OStatement(){} virtual ~OStatement(){}
public: public:
// ein Konstruktor, der fuer das Returnen des Objektes benoetigt wird: // A constructor which is required for the return of the objects
OStatement(OConnection* _pConnection, sql::Statement *_cppStatement) : OCommonStatement(_pConnection, _cppStatement) {} OStatement(OConnection* _pConnection, sql::Statement *_cppStatement) :
OCommonStatement(_pConnection, _cppStatement) {}
virtual OUString SAL_CALL getImplementationName() virtual OUString SAL_CALL getImplementationName()
throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE; throw (css::uno::RuntimeException, std::exception) SAL_OVERRIDE;
...@@ -205,13 +206,4 @@ namespace connectivity ...@@ -205,13 +206,4 @@ namespace connectivity
} }
#endif // INCLUDED_MYSQLC_SOURCE_MYSQLC_STATEMENT_HXX #endif // INCLUDED_MYSQLC_SOURCE_MYSQLC_STATEMENT_HXX
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment