Fix sip bindings for QgsTransaction

This commit is contained in:
Matthias Kuhn 2015-06-01 16:04:46 +02:00
parent 454e1fef09
commit 55db2abc5c

View File

@ -45,14 +45,14 @@ class QgsTransaction /Abstract/
* statements block until the conflicting transaction is committed or
* rolled back.
* Some providers might not honour the statement timeout. */
bool begin( QString& errorMsg, int statementTimeout = 20 );
bool begin( QString& errorMsg /Out/, int statementTimeout = 20 );
/** Commit transaction. All layers need to be in read-only mode. */
bool commit( QString& errorMsg );
bool commit( QString& errorMsg /Out/ );
/** Roll back transaction. All layers need to be in read-only mode. */
bool rollback( QString& errorMsg );
bool rollback( QString& errorMsg /Out/ );
/** Executes sql */
virtual bool executeSql( const QString& sql, QString& error ) = 0;
virtual bool executeSql( const QString& sql, QString& error /Out/ ) = 0;
};