Merge branch 'mjog/779-resetted-unpossible-english' into 'mainline'
Geary.Db.Statement: Fix poorly worded signal name Closes #779 See merge request GNOME/geary!472
This commit is contained in:
commit
c8a19a37be
2 changed files with 4 additions and 4 deletions
|
|
@ -13,14 +13,14 @@ public class Geary.Db.Result : Geary.Db.Context {
|
|||
internal Result(Statement statement, Cancellable? cancellable) throws Error {
|
||||
this.statement = statement;
|
||||
|
||||
statement.resetted.connect(on_query_finished);
|
||||
statement.was_reset.connect(on_query_finished);
|
||||
statement.bindings_cleared.connect(on_query_finished);
|
||||
|
||||
next(cancellable);
|
||||
}
|
||||
|
||||
~Result() {
|
||||
statement.resetted.disconnect(on_query_finished);
|
||||
statement.was_reset.disconnect(on_query_finished);
|
||||
statement.bindings_cleared.disconnect(on_query_finished);
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ public class Geary.Db.Statement : Geary.Db.Context {
|
|||
/**
|
||||
* Fired when the Statement is reset.
|
||||
*/
|
||||
public signal void resetted();
|
||||
public signal void was_reset();
|
||||
|
||||
/**
|
||||
* Fired when the Statement's bindings are cleared.
|
||||
|
|
@ -69,7 +69,7 @@ public class Geary.Db.Statement : Geary.Db.Context {
|
|||
if (reset_scope == ResetScope.CLEAR_BINDINGS)
|
||||
bindings_cleared();
|
||||
|
||||
resetted();
|
||||
was_reset();
|
||||
|
||||
return this;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue