On Sat, Jul 12, 2003 at 02:20:58AM +0530, Amish K. Munshi wrote:
GLUG Meeting on 13th July, 4pm at KReSIT, IIT Campus, Powai.
Greetings,
I have written a application using qt. I was able to compile without any errors. But now when I compile (this is successfull) and run (this is the problem) the pogram it gives the following error.
QPaintDevice: Must construct a QApplication before a QPaintDevice Segmentation fault
Google replied saying that there shouldnt be a static function. I do not know how to ask uic not to create static functions in my dialog_box.cpp. This is the only place where there are static functions. But there is no static work in Makefile or dialog_box.ui.
Thanks in advance.
This problem is solved, The problem is that I was using a
chat_window c_win[10]; as a global variable. It was assigning this memory before before QApplication could run. The solution I have used is
chat_window *c_win[10]; ^^^^^
And a dynamic allocation when it is required.
I guess all that was required a good night sleep to get this working. :-)
Thanks for the help.
Bye.