[gtkmm] Gtkmm-forge digest, Vol 1 #278 - 2 msgs
- From: gtkmm-forge-request lists sourceforge net
- To: gtkmm-forge lists sourceforge net
- Subject: [gtkmm] Gtkmm-forge digest, Vol 1 #278 - 2 msgs
- Date: Fri, 08 Nov 2002 12:01:10 -0800
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 97855] Changed - html dir in docs missing (bugzilla-daemon widget gnome org)
2. [Bug 97996] New - member Adjustment assigned to managed Widget causes Gtk-WARNING at clean up (bugzilla-daemon widget gnome org)
--__--__--
Message: 1
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, olle endforward com
Cc:
Date: Thu, 7 Nov 2002 18:14:20 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 97855] Changed - html dir in docs missing
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=97855
Changed by murrayc usa net
--- shadow/97855 Wed Nov 6 10:57:14 2002
+++ shadow/97855.tmp.19104 Thu Nov 7 18:14:20 2002
@@ -1,14 +1,14 @@
Bug#: 97855
Product: gtkmm
Version: 2.0
OS: other
OS Details:
-Status: NEW
-Resolution:
-Severity: major
+Status: RESOLVED
+Resolution: FIXED
+Severity: normal
Priority: Normal
Component: reference documentation
AssignedTo: gtkmm-forge lists sourceforge net
ReportedBy: olle endforward com
QAContact: gtkmm-forge lists sourceforge net
TargetMilestone: ---
--__--__--
Message: 2
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Fri, 8 Nov 2002 03:24:45 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 97996] New - member Adjustment assigned to managed Widget causes Gtk-WARNING at clean up
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=97996
Changed by cjj u washington edu
--- shadow/97996 Fri Nov 8 03:24:45 2002
+++ shadow/97996.tmp.1101 Fri Nov 8 03:24:45 2002
@@ -0,0 +1,45 @@
+Bug#: 97996
+Product: gtkmm
+Version: 2.0
+OS: Linux
+OS Details:
+Status: NEW
+Resolution:
+Severity: normal
+Priority: Normal
+Component: general
+AssignedTo: gtkmm-forge lists sourceforge net
+ReportedBy: cjj u washington edu
+TargetMilestone: ---
+URL:
+Summary: member Adjustment assigned to managed Widget causes Gtk-WARNING at clean up
+
+The following code demonstrates this problem at closing of the window. This
+problem arises in 2.0.0 but not in 1.3.26
+
+#include <gtkmm/main.h>
+#include <gtkmm/window.h>
+#include <gtkmm/adjustment.h>
+#include <gtkmm/spinbutton.h>
+
+struct Win :
+ public Gtk::Window
+{
+ Gtk::Adjustment adj;
+public:
+ Win() :
+ adj(0, 0, 10)
+ {
+ add(* Gtk::manage(new Gtk::SpinButton(adj)));
+ }
+ virtual ~Win() {};
+};
+
+int main(int argc, char *argv[])
+{
+ Gtk::Main mainloop(&argc, &argv);
+ Win w;
+ w.show_all();
+ mainloop.run(w);
+ return 0;
+}
--__--__--
_______________________________________________
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]