[maemo-developers] Gtk Dialog box causing application to crash
From: Arvind1 K arvind1.k at tcs.comDate: Wed Aug 6 17:35:48 EEST 2008
- Previous message: documentation in .deb packages
- Next message: Gtk Dialog box causing application to crash
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hi All, I'm facing a strange problem while using GTK+ Dialog box I've used two dialogs one in IF and other in ELSE if (some condition) { GtkWidget *dialog1 = gtk_message_dialog_new (main_window, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO, "Send file to server %s?", filename); result = gtk_dialog_run (GTK_DIALOG (dialog1)); gtk_widget_destroy (dialog1); } else { GtkWidget *dialog2 = gtk_message_dialog_new (main_window, GTK_DIALOG_DESTROY_WITH_PARENT, GTK_MESSAGE_QUESTION, GTK_BUTTONS_YES_NO, "Download file %s?", filename); result = gtk_dialog_run (GTK_DIALOG (dialog2)); gtk_widget_destroy (dialog2); } However if I use just a single dialog box at a time, everything works fine. I've used gdk_threads_enter() and gdk_threads_leave() whereever possible. these dialog boxes are created on 'select' event of CList so i cannot use gdk_threads_enter() and gdk_threads_leave(). I need to have few more dialog boxes, but using only 2 is causing problems of application crash. Can anybody address this issue? thanks and regards Arvind =====-----=====-----===== Notice: The information contained in this e-mail message and/or attachments to it may contain confidential or privileged information. If you are not the intended recipient, any dissemination, use, review, distribution, printing or copying of the information contained in this e-mail message and/or attachments to it are strictly prohibited. If you have received this communication in error, please notify us by reply e-mail or telephone and immediately and permanently delete the message and any attachments. Thank you -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.maemo.org/pipermail/maemo-developers/attachments/20080806/02cf7cad/attachment.htm
- Previous message: documentation in .deb packages
- Next message: Gtk Dialog box causing application to crash
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]