cnu_sree GTK+ Geek
Joined: 06 Oct 2006 Posts: 57
|
Posted: Thu Sep 13, 2007 7:23 am Post subject: why my application hanging |
|
|
why application hanging once's i change the text on label
here is my code
gchar **msg;
gchar **no;
msg=g_strsplit(strFromURI,"@",2);
no= g_strsplit(msg[0],":",2);
no[1]=g_strconcat(no[1] ," hi",NULL);
gtk_widget_set_sensitive(RefreshBalanceButton,FALSE);
gtk_widget_set_sensitive(DialButtonAnswer,FALSE);
gtk_label_set (GTK_LABEL (StatusLabel),no[1]);
in thi gtl_label_set creating the problem
if i remove this line my application working fine
but i need to show some text on it
why it is hanging
thank u
sree |
|