mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 01:09:50 +00:00
Changed: Minor changes
--HG-- branch : develop
This commit is contained in:
parent
37d34a2f0f
commit
b7c008c014
1 changed files with 11 additions and 10 deletions
|
@ -432,6 +432,7 @@ public:
|
|||
{
|
||||
// nothing to do
|
||||
}
|
||||
|
||||
void onAdd(uint addIndex, uint refIndex, TStringDiffContext &context)
|
||||
{
|
||||
TStringInfo si = context.Addition[addIndex];
|
||||
|
@ -442,6 +443,7 @@ public:
|
|||
nlinfo("Added %s at %u", si.Identifier.c_str(), addIndex);
|
||||
context.Diff.push_back(si);
|
||||
}
|
||||
|
||||
void onRemove(uint addIndex, uint refIndex, TStringDiffContext &context)
|
||||
{
|
||||
TStringInfo si = context.Reference[refIndex];
|
||||
|
@ -453,6 +455,7 @@ public:
|
|||
nlinfo("Removed %s at %u", si.Identifier.c_str(), addIndex);
|
||||
context.Diff.push_back(si);
|
||||
}
|
||||
|
||||
void onChanged(uint addIndex, uint refIndex, TStringDiffContext &context)
|
||||
{
|
||||
TStringInfo si = context.Addition[addIndex];
|
||||
|
@ -475,8 +478,6 @@ public:
|
|||
si.Comments = ucstring(temp) + nl + nl;
|
||||
context.Diff.push_back(si);
|
||||
}
|
||||
|
||||
|
||||
};
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue