gtkmm r996 - in trunk: . pango/src
- From: dodji svn gnome org
- To: svn-commits-list gnome org
- Subject: gtkmm r996 - in trunk: . pango/src
- Date: Sat, 31 May 2008 13:45:30 +0000 (UTC)
Author: dodji
Date: Sat May 31 13:45:30 2008
New Revision: 996
URL: http://svn.gnome.org/viewvc/gtkmm?rev=996&view=rev
Log:
Fix a gcc 4.3 warning on PangoAttribute* const gobj() const
Modified:
trunk/ChangeLog
trunk/pango/src/attributes.hg
Modified: trunk/pango/src/attributes.hg
==============================================================================
--- trunk/pango/src/attributes.hg (original)
+++ trunk/pango/src/attributes.hg Sat May 31 13:45:30 2008
@@ -115,7 +115,7 @@
/// Provides access to the underlying C GObject.
PangoAttribute* gobj() { return gobject_; }
/// Provides access to the underlying C GObject.
- PangoAttribute* const gobj() const { return gobject_; }
+ const PangoAttribute* gobj() const { return gobject_; }
/** Create a new font family attribute.
* @param family The family or comma separated list of families.
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]