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

« back to all changes in this revision

Viewing changes to gio/giomm/inetsocketaddress.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:
149
149
 
150
150
Glib::RefPtr<InetAddress> InetSocketAddress::get_address()
151
151
{
152
 
 
153
152
  Glib::RefPtr<InetAddress> retvalue = Glib::wrap(g_inet_socket_address_get_address(gobj()));
154
153
  if(retvalue)
155
154
    retvalue->reference(); //The function does not do a ref for us.
156
155
  return retvalue;
157
 
 
158
156
}
159
157
 
160
158
Glib::RefPtr<const InetAddress> InetSocketAddress::get_address() const