After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 112476 - Missing _CONVERSION() in convert_gdk.m4
Missing _CONVERSION() in convert_gdk.m4
Status: VERIFIED NOTABUG
Product: gtkmm
Classification: Bindings
Component: general
2.2
Other Linux
: Normal normal
: ---
Assigned To: gtkmm-forge
gtkmm-forge
Depends on:
Blocks:
 
 
Reported: 2003-05-07 10:39 UTC by Naofumi Yasufuku
Modified: 2009-08-15 18:40 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Naofumi Yasufuku 2003-05-07 10:39:44 UTC
The following type conversions are missing in convert_gdk.m4.

_CONVERSION(`GdkColormap*',`Glib::RefPtr<const Gdk::Colormap>',
`Glib::wrap($3)')

_CONVERSION(`GdkVisual*',`Glib::RefPtr<const Gdk::Visual>', `Glib::wrap($3)')

My project, gtkglextmm, needs them to generate sources using gtkmmproc.
I really hope these missing conversions will be added by next stable release.

Thank you.
Comment 1 Murray Cumming 2003-05-07 15:33:34 UTC
But you can, and should, add them in your own .m4 files. See one of
the other *mm projects for an example.
Comment 2 Naofumi Yasufuku 2003-05-07 16:09:32 UTC
Okay, I understand.  I've added these missing gdkmm type conversions
into my convert_*.m4 file.  Thank you.