git-svn-id: svn://db.shs.com.ru/libs@238 a8b55f48-bf90-11e4-a774-851b48703e85

This commit is contained in:
2017-06-16 12:29:33 +00:00
parent 4e90eef9bc
commit b874ffb253
13 changed files with 259 additions and 31 deletions

View File

@@ -17,7 +17,6 @@ KInterface::KInterface() {
CONNECTU(core, K_SendFail, this, sendFailed);
CONNECTU(core, K_Received, this, received);
CONNECTU(core, K_ReceiveFail, this, receiveFailed);
CONNECTU(core, K_KeepNamesRequest, this, keepNamesRequest);
}
@@ -127,8 +126,8 @@ void KInterface::parse(PIIODevice * d) {
}
void KInterface::update(PIIODevice * d) {
core->k_update(d);
void KInterface::update(PIIODevice * d, UpdateModeFlags mode) {
core->k_update(d, mode);
}