Dear visitor, welcome to QtForum.org.
If this is your first visit here, please read the Help. It explains in detail how this page works.
To use all features of this page, you should consider registering.
Please use the registration form, to register here or read more information about the registration process.
If you are already registered, please login here.
I've got a little problem. I don't know how can I rewrite a method form base class. I rewrote it, but it isn't called. Could you tell me what I'm doing wrong? Compilation was done without errors or warnings.
Thanx.
In order to override a method the declaration must be exactly the same. That is probably the reason to your problem. From a brief peak at your code the only such problem I can spot if that your event handling methods are not protected as in the class that you inherit. I do not know if this is the problem though.