I have this code:
- - - -
aws->SetupCanvas (0, g2d, g3d);
aws->GetPrefMgr ()->Load ("/aws/awstest.def");
aws->GetPrefMgr ()->SelectDefaultSkin ("Normal Windows");
csRef<iAwsWindow> test1 = aws->CreateWindowFrom ("Form1");
if (test1)
test1->Show ();
//aws->CaptureMouse (aws->ComponentAt (10, 10));
- - - -
When I run the app I get these errors:
- - - -
loading definitions file /aws/awstest.def...
aws: Couldn't find sink 'testButtonSink'.
aws: Couldn't find sink 'testButtonSink'.
aws: Couldn't find sink 'testButtonSink'.
aws: Couldn't find sink 'testButtonSink'.
aws: Couldn't find sink 'testButtonSink'.
aws: Couldn't find sink 'testButtonSink'.
load successful (5 windows, 1 skins loaded.)
aws-debug: setting up global AWS palette...
aws-debug: finished palette setup.
- - - -
How to fix it?
Thanks.