Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hello.
The problem occurs after the application is minimized to the system tray: If I close the message box, that app show me, the app will be closed too(I used a QSystemTrayIcon -example from this site). Where can be a problem?
Thank you for answers beforehand.
This is required in main.cpp (after QApplication definition): yourApp.setQuitOnLastWindowClosed(false);
(and your main class must be subclassed this way: class YourClass : public QSystemTrayIcon)
Thank you for your answer.
Actually that one "yourApp.setQuitOnLastWindowClosed(false);" was enough.