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

This commit is contained in:
2016-07-24 20:23:14 +00:00
parent 46664fd4b8
commit 9e70ad30d9
6 changed files with 15 additions and 14 deletions

View File

@@ -129,10 +129,14 @@ void Core::k_parse(PIIODevice * d) {
void Core::k_update(PIIODevice * d) {
KSection uk = k_;
k_parse(d);
bool kn = false;
if (!uk.isEmpty())
if (!uk.isSameStructure(k_))
if (!uk.isSameStructure(k_)) {
piCout << "ask for save names";
K_KeepNamesRequest(&kn);
}
uk.update(k_, kn);
k_ = uk;
}