~ubuntu-branches/ubuntu/trusty/glibmm2.4/trusty

« back to all changes in this revision

Viewing changes to gio/giomm/fileicon.cc

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2012-09-28 12:28:45 UTC
  • mfrom: (1.2.77)
  • Revision ID: package-import@ubuntu.com-20120928122845-6h032jivploan2aa
Tags: 2.33.13-0ubuntu2
* debian/rules:
  - Bump shlib version

Show diffs side-by-side

added added

removed removed

Lines of Context:
146
146
 
147
147
Glib::RefPtr<File> FileIcon::get_file()
148
148
{
149
 
 
150
149
  Glib::RefPtr<File> retvalue = Glib::wrap(g_file_icon_get_file(gobj()));
151
150
  if(retvalue)
152
151
    retvalue->reference(); //The function does not do a ref for us.
153
152
  return retvalue;
154
 
 
155
153
}
156
154
 
157
155
Glib::RefPtr<const File> FileIcon::get_file() const