CtrlLib: Fix in ArrayCtrl::AsText, GLCtrl: Fixed for WIN32 CLANG

git-svn-id: svn://ultimatepp.org/upp/trunk@14089 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2020-02-25 17:52:47 +00:00
parent 84496c23a0
commit fe78fa1ae4
2 changed files with 2 additions and 2 deletions

View file

@ -3018,7 +3018,7 @@ String ArrayCtrl::AsText(String (*format)(const Value&), bool sel,
bool next = false;
for(int r = 0; r < GetCount(); r++)
if(!sel || IsSel(r)) {
if(next)
if(!next)
txt << row;
for(int i = 0; i < GetColumnCount(); i++) {
if(i)