mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
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:
parent
d455e83d5e
commit
c69256de01
2 changed files with 2 additions and 2 deletions
|
|
@ -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)
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ uses
|
|||
CtrlCore,
|
||||
plugin/glew;
|
||||
|
||||
library(WIN32 GCC) "glaux glu32 opengl32";
|
||||
library(WIN32 (GCC | CLANG)) "glaux glu32 opengl32";
|
||||
|
||||
pkg_config(LINUX | BSD) "gl glu";
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue