- Fixed bug where the onChangeCallback was being called twice for "task list" after "task do xx".

This commit is contained in:
Paul Beckingham 2008-10-25 02:09:31 -04:00
parent b7e889339d
commit b0e18de1b6

View file

@ -414,7 +414,8 @@ bool TDB::writeCompleted (const T& t)
fputs (t.compose ().c_str (), out);
fclose (out);
dbChanged ();
// Note: No call to dbChanged here because this call never occurs by itself.
// It is always accompanied by an overwritePending call.
return true;
}