[gtkmm] Gtkmm-forge digest, Vol 1 #195 - 5 msgs
- From: gtkmm-forge-request lists sourceforge net
- To: gtkmm-forge lists sourceforge net
- Subject: [gtkmm] Gtkmm-forge digest, Vol 1 #195 - 5 msgs
- Date: Fri, 16 Aug 2002 12:02:14 -0700
Send Gtkmm-forge mailing list submissions to
gtkmm-forge lists sourceforge net
To subscribe or unsubscribe via the World Wide Web, visit
https://lists.sourceforge.net/lists/listinfo/gtkmm-forge
or, via email, send a message with subject or body 'help' to
gtkmm-forge-request lists sourceforge net
You can reach the person managing the list at
gtkmm-forge-admin lists sourceforge net
When replying, please edit your Subject line so it is more specific
than "Re: Contents of Gtkmm-forge digest..."
gtkmm-forge is the mailing list that receives gtkmm bug reports from bugzilla. A daily digest is sent to gtkmm-main, to encourage people to help fixing the bugs.
Today's Topics:
1. [Bug 90874] New - autogen.sh fails (directory tests/child_widget does not exist) (bugzilla-daemon widget gnome org)
2. [Bug 90874] Changed - autogen.sh fails (directory tests/child_widget does not exist) (bugzilla-daemon widget gnome org)
3. [Bug 90891] New - Gtk warnings after 1.3.19->1.3.20 upgrade (bugzilla-daemon widget gnome org)
4. [Bug 90891] Changed - Gtk warnings after 1.3.19->1.3.20 upgrade (bugzilla-daemon widget gnome org)
5. [Bug 90891] Changed - Gtk warnings after 1.3.19->1.3.20 upgrade (bugzilla-daemon widget gnome org)
--__--__--
Message: 1
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Thu, 15 Aug 2002 16:38:51 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 90874] New - autogen.sh fails (directory tests/child_widget does not exist)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
http://bugzilla.gnome.org/show_bug.cgi?id=90874
Changed by olau hardworking dk
--- shadow/90874 Thu Aug 15 16:38:51 2002
+++ shadow/90874.tmp.22696 Thu Aug 15 16:38:51 2002
@@ -0,0 +1,27 @@
+Bug#: 90874
+Product: gtkmm
+Version: 2.0
+OS: other
+OS Details:
+Status: NEW
+Resolution:
+Severity: normal
+Priority: Normal
+Component: build
+AssignedTo: gtkmm-forge lists sourceforge net
+ReportedBy: olau hardworking dk
+TargetMilestone: ---
+URL:
+Summary: autogen.sh fails (directory tests/child_widget does not exist)
+
+I can't build from CVS:
+
+$ rm -rf gtkmm-1.3
+$ cvs co gtkmm-1.3
+$ ./autogen.sh
+Found GNU make at /usr/bin/make... good.
+Adding libtools.
+Building macros.
+Building makefiles.
+tests/Makefile.am:3: required directory tests/child_widget does not exist
+$
--__--__--
Message: 2
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, olau hardworking dk
Cc:
Date: Thu, 15 Aug 2002 16:51:27 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 90874] Changed - autogen.sh fails (directory tests/child_widget does not exist)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
http://bugzilla.gnome.org/show_bug.cgi?id=90874
Changed by murrayc usa net
--- shadow/90874 Thu Aug 15 16:38:51 2002
+++ shadow/90874.tmp.24609 Thu Aug 15 16:51:27 2002
@@ -1,13 +1,13 @@
Bug#: 90874
Product: gtkmm
Version: 2.0
OS: other
OS Details:
-Status: NEW
-Resolution:
+Status: RESOLVED
+Resolution: FIXED
Severity: normal
Priority: Normal
Component: build
AssignedTo: gtkmm-forge lists sourceforge net
ReportedBy: olau hardworking dk
TargetMilestone: ---
--__--__--
Message: 3
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Thu, 15 Aug 2002 19:18:23 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 90891] New - Gtk warnings after 1.3.19->1.3.20 upgrade
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
http://bugzilla.gnome.org/show_bug.cgi?id=90891
Changed by dss home se
--- shadow/90891 Thu Aug 15 19:18:23 2002
+++ shadow/90891.tmp.11540 Thu Aug 15 19:18:23 2002
@@ -0,0 +1,62 @@
+Bug#: 90891
+Product: gtkmm
+Version: 2.0
+OS: Linux
+OS Details: Redhat Linux 7.3
+Status: NEW
+Resolution:
+Severity: normal
+Priority: Normal
+Component: general
+AssignedTo: gtkmm-forge lists sourceforge net
+ReportedBy: dss home se
+TargetMilestone: ---
+URL:
+Summary: Gtk warnings after 1.3.19->1.3.20 upgrade
+
+I experienced a problem after upgrading from gtkmm-1.3.19 to 1.3.20.
+
+When I try to run the following peice of code I get an error in the console:
+
+#include <gtkmm.h>
+
+class MyWindow : public Gtk::Window
+{
+public:
+ MyWindow();
+private:
+ Gtk::Button b;
+ Gtk::VBox vbox;
+};
+MyWindow::MyWindow() :
+ b("hello"),
+ vbox()
+{
+ add(vbox);
+ vbox.pack_start(b);
+ show_all();
+}
+
+int main (int argc, char *argv[])
+{
+ Gtk::Main kit(argc, argv);
+
+ MyWindow window;
+
+ kit.run(window);
+
+ return 0;
+}
+
+[sumpan e gtkmm-1.3.20-warning-test]$ ./test
+
+(test:12811): Gtk-CRITICAL **: file gtkcontainer.c: line 878
+(gtk_container_remove): assertion `GTK_IS_CONTAINER (container)' failed
+Segmentation fault
+
+gtkmm-1.3.20 and gtk+-2.0.6, it runs and compiles without errors with
+gtkmm-1.3.19.
+
+---
+Daniel Sundberg
+dss home se
--__--__--
Message: 4
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, dss home se
Cc:
Date: Fri, 16 Aug 2002 03:34:51 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 90891] Changed - Gtk warnings after 1.3.19->1.3.20 upgrade
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
http://bugzilla.gnome.org/show_bug.cgi?id=90891
Changed by murrayc usa net
--- shadow/90891 Thu Aug 15 19:18:23 2002
+++ shadow/90891.tmp.32231 Fri Aug 16 03:34:51 2002
@@ -57,6 +57,13 @@
gtkmm-1.3.20 and gtk+-2.0.6, it runs and compiles without errors with
gtkmm-1.3.19.
---
Daniel Sundberg
dss home se
+
+------- Additional Comments From murrayc usa net 2002-08-16 03:34 -------
+Thanks. I will investigate this in a few days time.
+
+By the way, I will investigate it by debugging while using the
+--g-fatal-warnings argument. You might be interested to look at that
+yourself if you can't wait.
--__--__--
Message: 5
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Fri, 16 Aug 2002 07:43:52 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 90891] Changed - Gtk warnings after 1.3.19->1.3.20 upgrade
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
http://bugzilla.gnome.org/show_bug.cgi?id=90891
Changed by dss home se
--- shadow/90891 Fri Aug 16 03:34:51 2002
+++ shadow/90891.tmp.2174 Fri Aug 16 07:43:52 2002
@@ -64,6 +64,10 @@
------- Additional Comments From murrayc usa net 2002-08-16 03:34 -------
Thanks. I will investigate this in a few days time.
By the way, I will investigate it by debugging while using the
--g-fatal-warnings argument. You might be interested to look at that
yourself if you can't wait.
+
+------- Additional Comments From dss home se 2002-08-16 07:43 -------
+I suppose I should mention that I get the error message and seg fault
+when i close the window by clicking on the close button in the titlebar.
--__--__--
_______________________________________________
Gtkmm-forge mailing list
Gtkmm-forge lists sourceforge net
https://lists.sourceforge.net/lists/listinfo/gtkmm-forge
End of Gtkmm-forge Digest
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]