.reference

git-svn-id: svn://ultimatepp.org/upp/trunk@9383 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2016-01-09 08:57:19 +00:00
parent 02c12c0f1c
commit 493b823254
4 changed files with 8 additions and 4 deletions

View file

@ -62,8 +62,8 @@ void App::Paint(Draw& w)
CoWork co;
for(int y = 0; y < sz.cy; y++) {
#ifdef CPP_11
RGBA *line = ib[y];
co & [=] {
co & [=, &ib] {
RGBA *line = ib[y];
Point c = sz / 2;
c = Point(int(sin((double)phase / 131) * c.x + c.x), int(sin((double)phase / 127) * c.y + c.y));
int yy = (y - c.y) * (y - c.y);

View file

@ -118,7 +118,7 @@ void WebCrawler::ShowPath()
for(;;) {
p.Add(url.GetKey(i));
if(i == 0)
break;
break;
i = url[i];
}
for(int i = p.GetCount() - 1; i >= 0; i--)

View file

@ -1,4 +1,4 @@
description "Drag & Drop with TreeCtrl as target";
description "Drag & Drop with TreeCtrl as target\377";
uses
CtrlLib;

View file

@ -0,0 +1,4 @@
#ifndef _TreeCtrlDnD_icpp_init_stub
#define _TreeCtrlDnD_icpp_init_stub
#include "CtrlLib/init"
#endif