Skip to content

Commit 55db2ab

Browse files
committedJun 1, 2015
Fix sip bindings for QgsTransaction
1 parent 454e1fe commit 55db2ab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎python/core/qgstransaction.sip

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,14 +45,14 @@ class QgsTransaction /Abstract/
4545
* statements block until the conflicting transaction is committed or
4646
* rolled back.
4747
* Some providers might not honour the statement timeout. */
48-
bool begin( QString& errorMsg, int statementTimeout = 20 );
48+
bool begin( QString& errorMsg /Out/, int statementTimeout = 20 );
4949

5050
/** Commit transaction. All layers need to be in read-only mode. */
51-
bool commit( QString& errorMsg );
51+
bool commit( QString& errorMsg /Out/ );
5252

5353
/** Roll back transaction. All layers need to be in read-only mode. */
54-
bool rollback( QString& errorMsg );
54+
bool rollback( QString& errorMsg /Out/ );
5555

5656
/** Executes sql */
57-
virtual bool executeSql( const QString& sql, QString& error ) = 0;
57+
virtual bool executeSql( const QString& sql, QString& error /Out/ ) = 0;
5858
};

0 commit comments

Comments
 (0)
Please sign in to comment.