Compare add

add support VS2012 dll
add compare objects tree
This commit is contained in:
levinsv 2019-12-22 22:53:56 +05:00
parent 7e10968209
commit 748d9b7950
31 changed files with 3971 additions and 4 deletions

View file

@ -739,7 +739,7 @@ void ctlSQLBox::OnKeyDown(wxKeyEvent &event)
int max = line.Length() - (GetLineEndPosition(GetCurrentLine()) - GetCurrentPos()) - offset;
if(line != wxEmptyString)
{
while ((line[x].GetValue() == '\t' || line[x].GetValue() == ' ') && x < max) {
while ((x < max) &&(line[x].GetValue() == '\t' || line[x].GetValue() == ' ')) {
wxChar ccc=line[x];
indent += line[x++];
}