Skip to content

Commit

Permalink
0.1.0-beta2
Browse files Browse the repository at this point in the history
  • Loading branch information
mazzy-ax committed Jan 7, 2020
1 parent 535ec38 commit ea50821
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions ax2009/SharedProject_SysString.xpo
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ Formatversion: 1
# }
# else if( ident == maxint() )
# {
# ident = 0; //lineIdent;
# ident = 0;
# }
#
# return ident;
Expand Down Expand Up @@ -638,7 +638,7 @@ Formatversion: 1
# endPos = text.matchPos() - 1;
#
# // TODO можно ли обойтись без копирования текста, а просто передать startPos, endPos в changeIdent?
# ret = SysText::construct(text.subStr(startPos, endPos - startPos + 1));
# ret.setText(text.subStr(startPos, endPos - startPos + 1));
#
# ret = SysText::changeIdent(ret, -ident);
#
Expand Down
4 changes: 2 additions & 2 deletions ax2009/Src/Class_SysText.xpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class SysText extends TextBuffer
}
else if( ident == maxint() )
{
ident = 0; //lineIdent;
ident = 0;
}

return ident;
Expand Down Expand Up @@ -192,7 +192,7 @@ class SysText extends TextBuffer
endPos = text.matchPos() - 1;

// TODO можно ли обойтись без копирования текста, а просто передать startPos, endPos в changeIdent?
ret = SysText::construct(text.subStr(startPos, endPos - startPos + 1));
ret.setText(text.subStr(startPos, endPos - startPos + 1));

ret = SysText::changeIdent(ret, -ident);

Expand Down
4 changes: 2 additions & 2 deletions ax2012/SharedProject_SysString.xpo
Original file line number Diff line number Diff line change
Expand Up @@ -496,7 +496,7 @@ Formatversion: 1
# }
# else if( ident == maxint() )
# {
# ident = 0; //lineIdent;
# ident = 0;
# }
#
# return ident;
Expand Down Expand Up @@ -634,7 +634,7 @@ Formatversion: 1
# endPos = text.matchPos() - 1;
#
# // TODO можно ли обойтись без копирования текста, а просто передать startPos, endPos в changeIdent?
# ret = SysText::construct(text.subStr(startPos, endPos - startPos + 1));
# ret.setText(text.subStr(startPos, endPos - startPos + 1));
#
# ret = SysText::changeIdent(ret, -ident);
#
Expand Down
4 changes: 2 additions & 2 deletions ax2012/Src/Class_SysText.xpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class SysText extends TextBuffer
}
else if( ident == maxint() )
{
ident = 0; //lineIdent;
ident = 0;
}

return ident;
Expand Down Expand Up @@ -192,7 +192,7 @@ class SysText extends TextBuffer
endPos = text.matchPos() - 1;

// TODO можно ли обойтись без копирования текста, а просто передать startPos, endPos в changeIdent?
ret = SysText::construct(text.subStr(startPos, endPos - startPos + 1));
ret.setText(text.subStr(startPos, endPos - startPos + 1));

ret = SysText::changeIdent(ret, -ident);

Expand Down
4 changes: 2 additions & 2 deletions ax4/SharedProject_SysString.xpo
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,7 @@ Formatversion: 1
# }
# else if( ident == maxint() )
# {
# ident = 0; //lineIdent;
# ident = 0;
# }
#
# return ident;
Expand Down Expand Up @@ -638,7 +638,7 @@ Formatversion: 1
# endPos = text.matchPos() - 1;
#
# // TODO можно ли обойтись без копирования текста, а просто передать startPos, endPos в changeIdent?
# ret = SysText::construct(text.subStr(startPos, endPos - startPos + 1));
# ret.setText(text.subStr(startPos, endPos - startPos + 1));
#
# ret = SysText::changeIdent(ret, -ident);
#
Expand Down
4 changes: 2 additions & 2 deletions ax4/Src/Class_SysText.xpp
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class SysText extends TextBuffer
}
else if( ident == maxint() )
{
ident = 0; //lineIdent;
ident = 0;
}

return ident;
Expand Down Expand Up @@ -192,7 +192,7 @@ class SysText extends TextBuffer
endPos = text.matchPos() - 1;

// TODO можно ли обойтись без копирования текста, а просто передать startPos, endPos в changeIdent?
ret = SysText::construct(text.subStr(startPos, endPos - startPos + 1));
ret.setText(text.subStr(startPos, endPos - startPos + 1));

ret = SysText::changeIdent(ret, -ident);

Expand Down

0 comments on commit ea50821

Please sign in to comment.