File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -45,14 +45,14 @@ class QgsTransaction /Abstract/
45
45
* statements block until the conflicting transaction is committed or
46
46
* rolled back.
47
47
* 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 );
49
49
50
50
/** Commit transaction. All layers need to be in read-only mode. */
51
- bool commit( QString& errorMsg );
51
+ bool commit( QString& errorMsg /Out/ );
52
52
53
53
/** Roll back transaction. All layers need to be in read-only mode. */
54
- bool rollback( QString& errorMsg );
54
+ bool rollback( QString& errorMsg /Out/ );
55
55
56
56
/** Executes sql */
57
- virtual bool executeSql( const QString& sql, QString& error ) = 0;
57
+ virtual bool executeSql( const QString& sql, QString& error /Out/ ) = 0;
58
58
};
You can’t perform that action at this time.
0 commit comments