[gtkmm] Gtkmm-forge digest, Vol 1 #290 - 5 msgs



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 98869] Changed - Mismatched new [] / delete. (bugzilla-daemon widget gnome org)
   2. [Bug 98869] Changed - Mismatched new [] / delete. (bugzilla-daemon widget gnome org)
   3. [Bug 99022] New - [PATCH] Overhaul and extension of gconfmm (bugzilla-daemon widget gnome org)
   4. [Bug 99022] Changed - [PATCH] Overhaul and extension of gconfmm (bugzilla-daemon widget gnome org)
   5. [Bug 99022] Changed - Overhaul and extension of gconfmm (bugzilla-daemon widget gnome org)

--__--__--

Message: 1
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Mon, 18 Nov 2002 15:11:55 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 98869] Changed - Mismatched new [] / delete.

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=98869

Changed by murrayc usa net 

--- shadow/98869	Mon Nov 18 08:43:28 2002
+++ shadow/98869.tmp.17792	Mon Nov 18 15:11:55 2002
@@ -122,6 +122,10 @@
 ==17137==    by 0x81540EC: main (gnome_main.cc:29)
 ==17137==    by 0x40F509D3: __libc_start_main (in /lib/libc-2.3.1.so)
 ==17137==    by 0x80DDB71: (within /home/matty/Projects/Visage-0.1/src/visage)
 
 According to the Valgrind docs, if you allocate with new [] you must
 deallocated with delete [], not delete.
+
+------- Additional Comments From murrayc usa net  2002-11-18 15:11 -------
+How can we reproduce this error? Does this happen on any of the
+gnomemm examples, or only your own app?



--__--__--

Message: 2
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Mon, 18 Nov 2002 23:00:36 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 98869] Changed - Mismatched new [] / delete.

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=98869

Changed by matty chariot net au 

--- shadow/98869	Mon Nov 18 15:11:55 2002
+++ shadow/98869.tmp.1744	Mon Nov 18 23:00:36 2002
@@ -126,6 +126,10 @@
 According to the Valgrind docs, if you allocate with new [] you must
 deallocated with delete [], not delete.
 
 ------- Additional Comments From murrayc usa net  2002-11-18 15:11 -------
 How can we reproduce this error? Does this happen on any of the
 gnomemm examples, or only your own app?
+
+------- Additional Comments From matty chariot net au  2002-11-18 23:00 -------
+I will see about getting a test case.  I couldn't replace it on
+examples/menu, and examples/gnome-hello is broken.



--__--__--

Message: 3
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc: 
Date: Tue, 19 Nov 2002 14:10:55 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 99022] New - [PATCH] Overhaul and extension of gconfmm

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=99022

Changed by abas aix meng auth gr 

--- shadow/99022	Tue Nov 19 14:10:55 2002
+++ shadow/99022.tmp.19775	Tue Nov 19 14:10:55 2002
@@ -0,0 +1,31 @@
+Bug#: 99022
+Product: gnomemm
+Version: 2.0
+OS: other
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: normal
+Priority: Normal
+Component: gconfmm
+AssignedTo: gtkmm-forge lists sourceforge net                            
+ReportedBy: abas aix meng auth gr               
+TargetMilestone: ---
+URL: 
+Summary: [PATCH] Overhaul and extension of gconfmm
+
+Attached is a huge-ish patch for gconfmm that:
+
+1. Extends the API to include GConfChangeSet.
+2. Moves value.*, entry.*, schema.* to the src
+   subdirectory and uses the _WRAP macros to 
+   reduce non-generated code.
+3. Makes some changes in the API w.r.t. list passing,
+   and uses Glib:SListHandle with specializations for that.
+3. Implements documentation generation.
+4. Documents most of the API.
+5. Updates the defs files.
+
+Please ha a look at it. The documentation could be improved, 
+but I think that a first look would be appropriate, with
+the comments that must follow :-)



--__--__--

Message: 4
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, abas aix meng auth gr
Cc: 
Date: Tue, 19 Nov 2002 14:39:07 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 99022] Changed - [PATCH] Overhaul and extension of gconfmm

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=99022

Changed by murrayc usa net 

--- shadow/99022	Tue Nov 19 14:10:55 2002
+++ shadow/99022.tmp.32585	Tue Nov 19 14:39:07 2002
@@ -26,6 +26,9 @@
 4. Documents most of the API.
 5. Updates the defs files.
 
 Please ha a look at it. The documentation could be improved, 
 but I think that a first look would be appropriate, with
 the comments that must follow :-)
+
+------- Additional Comments From murrayc usa net  2002-11-19 14:39 -------
+Why isn't this 3 or 4 separate patches?



--__--__--

Message: 5
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, abas aix meng auth gr
Cc: 
Date: Tue, 19 Nov 2002 14:39:32 -0500 (EST)
Subject: [gtkmm bugzilla] [Bug 99022] Changed - Overhaul and extension of gconfmm

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=99022

Changed by murrayc usa net 

--- shadow/99022	Tue Nov 19 14:39:07 2002
+++ shadow/99022.tmp.32682	Tue Nov 19 14:39:32 2002
@@ -9,13 +9,13 @@
 Priority: Normal
 Component: gconfmm
 AssignedTo: gtkmm-forge lists sourceforge net                            
 ReportedBy: abas aix meng auth gr               
 TargetMilestone: ---
 URL: 
-Summary: [PATCH] Overhaul and extension of gconfmm
+Summary: Overhaul and extension of gconfmm
 
 Attached is a huge-ish patch for gconfmm that:
 
 1. Extends the API to include GConfChangeSet.
 2. Moves value.*, entry.*, schema.* to the src
    subdirectory and uses the _WRAP macros to 




--__--__--

_______________________________________________
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]