~ubuntu-branches/ubuntu/saucy/atkmm1.6/saucy-proposed

« back to all changes in this revision

Viewing changes to atk/atkmm/objectaccessible.cc

  • Committer: Package Import Robot
  • Author(s): Sebastien Bacher
  • Date: 2013-05-28 13:04:34 UTC
  • mfrom: (0.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20130528130434-e0esxsm4eo8bn8tf
Tags: 2.22.7-1ubuntu1
* Resynchronize on Debian, remaining diff
* Convert to multiarch (LP: #902703):
  - Pass --libdir with multiarch path to configure
  - Adjust .install files to refer to /usr/lib subdirs
  - Add multiarch Pre-Depends
  - Bump debhelper and cdbs build-deps for ${misc:Pre-Depends} and
    $(DEB_HOST_MULTIARCH) support, respectively
* debian/compat: update to 9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
131
131
 
132
132
Glib::RefPtr<Glib::Object> ObjectAccessible::get_object()
133
133
{
134
 
 
135
134
  Glib::RefPtr<Glib::Object> retvalue = Glib::wrap(atk_gobject_accessible_get_object(gobj()));
136
135
  if(retvalue)
137
136
    retvalue->reference(); //The function does not do a ref for us.
138
137
  return retvalue;
139
 
 
140
138
}
141
139
 
142
140
Glib::RefPtr<const Glib::Object> ObjectAccessible::get_object() const
148
146
{
149
147
 
150
148
  Glib::RefPtr<Atk::Object> retvalue = Glib::wrap(atk_gobject_accessible_for_object(Glib::unwrap(obj)));
151
 
 
152
149
  if(retvalue)
153
150
    retvalue->reference(); //The function does not do a ref for us
154
151
  return retvalue;
159
156
{
160
157
 
161
158
  Glib::RefPtr<const Atk::Object> retvalue = Glib::wrap(atk_gobject_accessible_for_object(const_cast<GObject*>(Glib::unwrap<Glib::Object>(obj))));
162
 
 
163
159
  if(retvalue)
164
160
    retvalue->reference(); //The function does not do a ref for us
165
161
  return retvalue;