On Tuesday, 17 January 2017 at 19:07:21 UTC, Ali Çehreli wrote:
On 01/17/2017 01:25 AM, Erdem wrote:
> void main(string[] args)
> {
> Main.init(args);
> new MyWindow();
> Main.run();
> }
I have no experience with Gtkd but the code inside main looks
fundamentally wrong. One would expect you to do something with
the MyWindow object:
auto w = new MyWindow();
And then use 'w' but I don't know how.
Ali
Thanks. The problem is already solved. You may look at this
thread:
http://ddili.org/forum/post/12453
Ben D diline biraz önce göndermiştim :)
Erdem