Author: murrayc Date: Sun Feb 10 15:44:54 2008 New Revision: 1333 URL: http://svn.gnome.org/viewvc/gnomemm?rev=1333&view=rev
Log: 2008-02-10 Murray Cumming <[EMAIL PROTECTED]> * gstreamer/src/caps.hg: Remove unnecessary cobj_ member variable. Modified: gstreamermm/trunk/ChangeLog gstreamermm/trunk/gstreamer/src/caps.hg Modified: gstreamermm/trunk/gstreamer/src/caps.hg ============================================================================== --- gstreamermm/trunk/gstreamer/src/caps.hg (original) +++ gstreamermm/trunk/gstreamer/src/caps.hg Sun Feb 10 15:44:54 2008 @@ -39,10 +39,10 @@ static Glib::RefPtr<Caps> create_simple(const Glib::ustring& media_type); //TODO: Parameter should be a list of Structures - static Glib::RefPtr<Caps> create_full(Structure&); + static Glib::RefPtr<Caps> create_full(Structure& structure); _WRAP_METHOD(Glib::RefPtr<Caps> copy() const, gst_caps_copy) - _WRAP_METHOD(Glib::RefPtr<Caps> copy_nth(guint), gst_caps_copy_nth) + _WRAP_METHOD(Glib::RefPtr<Caps> copy_nth(guint nth), gst_caps_copy_nth) _WRAP_METHOD(void append(const Glib::RefPtr<Caps>& caps), gst_caps_append) _WRAP_METHOD(void merge(const Glib::RefPtr<Caps>& caps), gst_caps_merge) _WRAP_METHOD(void append_structure(Structure& structure), gst_caps_append_structure) @@ -85,9 +85,6 @@ _WRAP_METHOD(void truncate(), gst_caps_truncate) _IGNORE(gst_caps_copy, gst_caps_make_writable) - -protected: - GstCaps * cobj_; }; } //namespace Gst _______________________________________________ SVN-commits-list mailing list (read only) http://mail.gnome.org/mailman/listinfo/svn-commits-list Want to limit the commits to a few modules? Go to above URL, log in to edit your options and select the modules ('topics') you want. Module maintainer? It is possible to set the reply-to to your development mailing list. Email [EMAIL PROTECTED] if interested.
