[gtkmm] Gtkmm-forge digest, Vol 1 #226 - 4 msgs
- From: gtkmm-forge-request lists sourceforge net
- To: gtkmm-forge lists sourceforge net
- Subject: [gtkmm] Gtkmm-forge digest, Vol 1 #226 - 4 msgs
- Date: Fri, 13 Sep 2002 12:01:34 -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 92514] Changed - pangomm has some bugs and incomplete documentation (bugzilla-daemon widget gnome org)
2. [Bug 92208] Changed - Unable to inherit from items (bugzilla-daemon widget gnome org)
3. [Bug 93239] New - PATCH: implement GError** parameters as automatic throws() (bugzilla-daemon widget gnome org)
4. [Bug 93239] Changed - PATCH: implement GError** parameters as automatic throws() (bugzilla-daemon widget gnome org)
--__--__--
Message: 1
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, MHL Schulze t-online de
Cc:
Date: Thu, 12 Sep 2002 17:51:27 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 92514] Changed - pangomm has some bugs and incomplete documentation
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=92514
Changed by murrayc usa net
--- shadow/92514 Wed Sep 11 14:58:52 2002
+++ shadow/92514.tmp.23127 Thu Sep 12 17:51:27 2002
@@ -1,13 +1,13 @@
Bug#: 92514
Product: gtkmm
Version: 2.0
OS: other
OS Details:
-Status: NEW
-Resolution:
+Status: RESOLVED
+Resolution: FIXED
Severity: normal
Priority: Normal
Component: general
AssignedTo: gtkmm-forge lists sourceforge net
ReportedBy: MHL Schulze t-online de
TargetMilestone: ---
@@ -171,6 +171,9 @@
that I found doesn't mention anything about the string format of the
color names. Currently, all names are english even in my german
distribution. Obviously we cannot be 100% sure that this is the case
for future releases and I don't see how a Glib::ustring could hurt
here. So I'll change the parameter of Color::parse() to Glib::ustring,
too. (This seems to be along your line of argumentation :)
+
+------- Additional Comments From murrayc usa net 2002-09-12 17:51 -------
+I have done this now.
--__--__--
Message: 2
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net, indigo sempiternity org
Cc:
Date: Fri, 13 Sep 2002 04:03:40 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 92208] Changed - Unable to inherit from items
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=92208
Changed by murrayc usa net
--- shadow/92208 Wed Sep 11 03:44:50 2002
+++ shadow/92208.tmp.13987 Fri Sep 13 04:03:39 2002
@@ -87,6 +87,10 @@
dnl We have to use a dynamic_cast because we do not
dnl know the actual type from which to cast up.
CppObjectType *const obj = dynamic_cast<CppObjectType*>(
Glib::ObjectBase::_get_current_wrapper`'((GObject*)$8));
+
+------- Additional Comments From murrayc usa net 2002-09-13 04:03 -------
+Please do tell us whether using that other constructor fixes this bug
+for you.
--__--__--
Message: 3
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Fri, 13 Sep 2002 13:32:11 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 93239] New - PATCH: implement GError** parameters as automatic throws()
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=93239
Changed by abas aix meng auth gr
--- shadow/93239 Fri Sep 13 13:32:11 2002
+++ shadow/93239.tmp.22233 Fri Sep 13 13:32:11 2002
@@ -0,0 +1,24 @@
+Bug#: 93239
+Product: gtkmm
+Version: 2.0
+OS: other
+OS Details:
+Status: NEW
+Resolution:
+Severity: enhancement
+Priority: Normal
+Component: general
+AssignedTo: gtkmm-forge lists sourceforge net
+ReportedBy: abas aix meng auth gr
+TargetMilestone: ---
+URL:
+Summary: PATCH: implement GError** parameters as automatic throws()
+
+This patch modifies _WRAP_METHOD to take an extra parameter
+"errthrow" for C functions that have a last parameter
+"GError** error" for error returns. When "errthrow" is present,
+the generated code will check this error and if present, will
+throw a C++ exception of the apropriate type.
+
+Note that this last parameter should not be present in the C++
+method's parameter list.
--__--__--
Message: 4
From: bugzilla-daemon widget gnome org
To: gtkmm-forge lists sourceforge net
Cc:
Date: Fri, 13 Sep 2002 13:33:41 -0400 (EDT)
Subject: [gtkmm bugzilla] [Bug 93239] Changed - PATCH: implement GError** parameters as automatic throws()
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=93239
Changed by abas aix meng auth gr
--- shadow/93239 Fri Sep 13 13:32:11 2002
+++ shadow/93239.tmp.22346 Fri Sep 13 13:33:41 2002
@@ -19,6 +19,11 @@
"GError** error" for error returns. When "errthrow" is present,
the generated code will check this error and if present, will
throw a C++ exception of the apropriate type.
Note that this last parameter should not be present in the C++
method's parameter list.
+
+------- Additional Comments From abas aix meng auth gr 2002-09-13 13:33 -------
+Created an attachment (id=11065)
+throw exceptions from errors: patch to _WRAP_METHOD
+
--__--__--
_______________________________________________
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]