[glibmm] ContentType: Fix typo in the content_type_get_symbolic_icon() name.



commit 70d82352b34ec18634c99c61a174655b178bcd08
Author: Josà Alburquerque <jaalburqu svn gnome org>
Date:   Thu Oct 25 16:07:45 2012 -0400

    ContentType: Fix typo in the content_type_get_symbolic_icon() name.
    
    	* gio/giomm/contenttype.cc: The name was misspelled because the 'o'
    	and 'l' in 'symbolic' were interchanged.  The name is correctly
    	spelled in the .h file so I guess it's safe to rename it in the .cc
    	file for 2.34 and the master branch.

 ChangeLog                |    9 +++++++++
 gio/giomm/contenttype.cc |    2 +-
 2 files changed, 10 insertions(+), 1 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index 6cdc7e5..fb3af38 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2012-10-25  Josà Alburquerque  <jaalburquerque gmail com>
+
+	ContentType: Fix typo in the content_type_get_symbolic_icon() name.
+
+	* gio/giomm/contenttype.cc: The name was misspelled because the 'o'
+	and 'l' in 'symbolic' were interchanged.  The name is correctly
+	spelled in the .h file so I guess it's safe to rename it in the .cc
+	file for 2.34 and the master branch.
+
 2012-10-24  Josà Alburquerque  <jaalburquerque gmail com>
 
 	DBus::[Connection|Proxy]: Use ifdefs for the UnixFDList call*() methods.
diff --git a/gio/giomm/contenttype.cc b/gio/giomm/contenttype.cc
index 6c3806b..9168899 100644
--- a/gio/giomm/contenttype.cc
+++ b/gio/giomm/contenttype.cc
@@ -56,7 +56,7 @@ Glib::RefPtr<Gio::Icon> content_type_get_icon(const Glib::ustring& type)
   return retvalue;
 }
 
-Glib::RefPtr<Gio::Icon> content_type_get_symbloic_icon(const Glib::ustring& type)
+Glib::RefPtr<Gio::Icon> content_type_get_symbolic_icon(const Glib::ustring& type)
 {
   Glib::RefPtr<Icon> retvalue = Glib::wrap(g_content_type_get_symbolic_icon(type.c_str()));
   if(retvalue)



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]