Send Gtkmm-forge mailing list submissions to [EMAIL PROTECTED] 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 [EMAIL PROTECTED]
You can reach the person managing the list at [EMAIL PROTECTED] 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. Do not try to unsubscribe gtkmm-forge from gtkmm-list. Today's Topics: 1. [Bug 562810] Extending the extra defs generation tool to accept custom pointer determining function (glibmm (bugzilla.gnome.org)) 2. [Bug 562716] warning fixing cause more warnings. (glibmm (bugzilla.gnome.org)) 3. [Bug 562810] Extending the extra defs generation tool to accept custom pointer determining function (glibmm (bugzilla.gnome.org)) 4. [Bug 562810] Extending the extra defs generation tool to accept custom pointer determining function (glibmm (bugzilla.gnome.org)) 5. [Bug 562716] warning fixing cause more warnings. (glibmm (bugzilla.gnome.org)) 6. [Bug 562893] New: Deprecated GTK+ symbols in gtkmm headers (gtkmm (bugzilla.gnome.org)) 7. [Bug 562810] Extending the extra defs generation tool to accept custom pointer determining function (glibmm (bugzilla.gnome.org)) ---------------------------------------------------------------------- Message: 1 Date: Sun, 30 Nov 2008 22:11:54 +0000 (UTC) From: "glibmm (bugzilla.gnome.org)" <[EMAIL PROTECTED]> Subject: [gtkmm bugzilla] [Bug 562810] Extending the extra defs generation tool to accept custom pointer determining function To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=utf-8 If you have any questions why you received this email, please see the text at the end of this email. Replies to this email are NOT read, please see the text at the end of this email. You can add comments to this bug at: http://bugzilla.gnome.org/show_bug.cgi?id=562810 glibmm | general | Ver: unspecified ------- Comment #1 from Jos? Alburquerque 2008-11-30 22:11 UTC ------- Created an attachment (id=123713) --> (http://bugzilla.gnome.org/attachment.cgi?id=123713&action=view) Custom is pointer function extension patch -- See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received this email, why you can't respond via email, how to stop receiving emails (or reduce the number you receive), and how to contact someone if you are having problems with the system. You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=562810. ------------------------------ Message: 2 Date: Sun, 30 Nov 2008 23:42:54 +0000 (UTC) From: "glibmm (bugzilla.gnome.org)" <[EMAIL PROTECTED]> Subject: [gtkmm bugzilla] [Bug 562716] warning fixing cause more warnings. To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=utf-8 If you have any questions why you received this email, please see the text at the end of this email. Replies to this email are NOT read, please see the text at the end of this email. You can add comments to this bug at: http://bugzilla.gnome.org/show_bug.cgi?id=562716 glibmm | general | Ver: 2.18.x Murray Cumming changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[EMAIL PROTECTED] ------- Comment #3 from Murray Cumming 2008-11-30 23:42 UTC ------- Please commit. That is indeed much nicer. -- See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received this email, why you can't respond via email, how to stop receiving emails (or reduce the number you receive), and how to contact someone if you are having problems with the system. You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=562716. ------------------------------ Message: 3 Date: Sun, 30 Nov 2008 23:46:18 +0000 (UTC) From: "glibmm (bugzilla.gnome.org)" <[EMAIL PROTECTED]> Subject: [gtkmm bugzilla] [Bug 562810] Extending the extra defs generation tool to accept custom pointer determining function To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=utf-8 If you have any questions why you received this email, please see the text at the end of this email. Replies to this email are NOT read, please see the text at the end of this email. You can add comments to this bug at: http://bugzilla.gnome.org/show_bug.cgi?id=562810 glibmm | general | Ver: unspecified Murray Cumming changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[EMAIL PROTECTED] ------- Comment #2 from Murray Cumming 2008-11-30 23:46 UTC ------- Could I see an example of how this would be used, please. -- See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received this email, why you can't respond via email, how to stop receiving emails (or reduce the number you receive), and how to contact someone if you are having problems with the system. You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=562810. ------------------------------ Message: 4 Date: Mon, 1 Dec 2008 00:18:56 +0000 (UTC) From: "glibmm (bugzilla.gnome.org)" <[EMAIL PROTECTED]> Subject: [gtkmm bugzilla] [Bug 562810] Extending the extra defs generation tool to accept custom pointer determining function To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=utf-8 If you have any questions why you received this email, please see the text at the end of this email. Replies to this email are NOT read, please see the text at the end of this email. You can add comments to this bug at: http://bugzilla.gnome.org/show_bug.cgi?id=562810 glibmm | general | Ver: unspecified ------- Comment #3 from Jos? Alburquerque 2008-12-01 00:18 UTC ------- It would be used from the extra defs generation utility of the module. For example the genereate_defs_gst.cc would look partly like: #include "glibmm_generate_extra_defs/generate_extra_defs.h" #include <gst/gst.h> bool gst_type_is_a_pointer(GType gtype) { return (gtype_is_a_pointer(gtype) || g_type_is_a(gtype, GST_TYPE_MINI_OBJECT)); } ... int main (int argc, char* argv[]) { ... std::cout << get_defs(GST_TYPE_BUFFER, gst_type_is_a_pointer) << get_defs(GST_TYPE_CAPS, gst_type_is_a_pointer) ... } However, I just looked and it is not necessary for what I'm trying to do (get the right types of properties and signals for plug-ins that are to be generated). At first I sort of got somewhat confused and thought this was needed, but it really is not. It still can be used as described above, but a local function for determining if a type is a function will work fine without the need for this patch. Sorry for the confusion. -- See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received this email, why you can't respond via email, how to stop receiving emails (or reduce the number you receive), and how to contact someone if you are having problems with the system. You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=562810. ------------------------------ Message: 5 Date: Mon, 1 Dec 2008 07:14:30 +0000 (UTC) From: "glibmm (bugzilla.gnome.org)" <[EMAIL PROTECTED]> Subject: [gtkmm bugzilla] [Bug 562716] warning fixing cause more warnings. To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=utf-8 If you have any questions why you received this email, please see the text at the end of this email. Replies to this email are NOT read, please see the text at the end of this email. You can add comments to this bug at: http://bugzilla.gnome.org/show_bug.cgi?id=562716 glibmm | general | Ver: 2.18.x Hubert Figuiere changed: What |Removed |Added ---------------------------------------------------------------------------- Attachment #123669|none |committed Flag| | Status|UNCONFIRMED |RESOLVED Resolution| |FIXED ------- Comment #4 from Hubert Figuiere 2008-12-01 07:14 UTC ------- ok committed. -- See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received this email, why you can't respond via email, how to stop receiving emails (or reduce the number you receive), and how to contact someone if you are having problems with the system. You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=562716. ------------------------------ Message: 6 Date: Mon, 1 Dec 2008 18:03:50 +0000 (UTC) From: "gtkmm (bugzilla.gnome.org)" <[EMAIL PROTECTED]> Subject: [gtkmm bugzilla] [Bug 562893] New: Deprecated GTK+ symbols in gtkmm headers To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]/> Content-Type: text/plain; charset=utf-8 If you have any questions why you received this email, please see the text at the end of this email. Replies to this email are NOT read, please see the text at the end of this email. You can add comments to this bug at: http://bugzilla.gnome.org/show_bug.cgi?id=562893 gtkmm | general | Ver: 2.14.x Summary: Deprecated GTK+ symbols in gtkmm headers Product: gtkmm Version: 2.14.x Platform: Other OS/Version: All Status: UNCONFIRMED Severity: minor Priority: Normal Component: general AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] QAContact: [EMAIL PROTECTED] GNOME version: 2.23/2.24 GNOME milestone: Unspecified Please describe the problem: Some gtkmm headers (container.h, treesortable.h) use deprecated GTK+ symbols (GtkType, GtkDestroyNotify). This yields a compilation problem for programs which use GTK+/gtkmm and define GTK_DISABLE_DEPRECATED. Steps to reproduce: Actual results: Expected results: Does this happen every time? Other information: -- See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received this email, why you can't respond via email, how to stop receiving emails (or reduce the number you receive), and how to contact someone if you are having problems with the system. You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=562893. ------------------------------ Message: 7 Date: Mon, 1 Dec 2008 08:14:35 +0000 (UTC) From: "glibmm (bugzilla.gnome.org)" <[EMAIL PROTECTED]> Subject: [gtkmm bugzilla] [Bug 562810] Extending the extra defs generation tool to accept custom pointer determining function To: [EMAIL PROTECTED] Message-ID: <[EMAIL PROTECTED]> Content-Type: text/plain; charset=utf-8 If you have any questions why you received this email, please see the text at the end of this email. Replies to this email are NOT read, please see the text at the end of this email. You can add comments to this bug at: http://bugzilla.gnome.org/show_bug.cgi?id=562810 glibmm | general | Ver: unspecified ------- Comment #4 from Murray Cumming 2008-12-01 08:14 UTC ------- > a local function for determining if a type is a function will work fine > without > the need for this patch. I'd be interested to see that when you do it. Thanks. -- See http://bugzilla.gnome.org/page.cgi?id=email.html for more info about why you received this email, why you can't respond via email, how to stop receiving emails (or reduce the number you receive), and how to contact someone if you are having problems with the system. You can add comments to this bug at http://bugzilla.gnome.org/show_bug.cgi?id=562810. ------------------------------ ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ ------------------------------ _______________________________________________ Gtkmm-forge mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/gtkmm-forge End of Gtkmm-forge Digest, Vol 31, Issue 1 ****************************************** _______________________________________________ gtkmm-list mailing list gtkmm-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtkmm-list