Quote Originally Posted by VireX View Post
No I get errors by using mingw32-make, not using make anymore.
Can you post first few error messages?

Quote Originally Posted by VireX View Post
I saw what moc generates, it makes it so that the connection is established between objects, but somehow wxWidgets never had to do this, I wonder why.
They never had to do this, because MFC and wxWidgets have a static event routing mechanism. They have to know exactly where the event should be directed at the compile time (which also means that you can't change that in the runtime).

Qt has a generic communication mechanism which allows you to establish and remove connections in the runtime, so you don't know a priori what connections will be made, therefore you can't implement this using just a few macros harcoded in your sources.

Quote Originally Posted by VireX View Post
this is the first forum that has such fast session timeouts, like as if there is top secret information here or something.
I can't remember when I had to log in last time, because I've checked the "remember me" check box and I suggest you to do the same. Anyway I have increased the session timeout to 30 minutes.

Quote Originally Posted by VireX View Post
qmake is not working for me
That's better, at least it isn't crap that doesn't work at all. If we knew something more than "doesn't work" and "gives me errors", we could find the solution.