show order difference between 0.99.9 and 0.99.10?
- From: Dave Reed <dreed capital edu>
- To: gtk-list redhat com
- Subject: show order difference between 0.99.9 and 0.99.10?
- Date: Wed, 8 Apr 1998 12:57:42 -0400
In 0.99.9, I had something like:
gtk_widget_show(verticalBox_);
gtk_widget_show(menubar_);
gtk_widget_show(baseWidget_);
where verticalBox_ and menubar_ are inside the baseWidget_
(baseWidget_ was a window containing them). It worked fine.
With 0.99.10 this segfaults, but changing it to the following seems to
work:
gtk_widget_show(baseWidget_);
gtk_widget_show(verticalBox_);
gtk_widget_show(menubar_);
Which of the following three is true? :-)
a. this is normal and is a result of some of the changes from 0.9 to
0.10
b. this indicates there is some other bug in my code
c. this indicates a bug in gtk
Thanks,
Dave
dreed@capital.edu
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]