~ubuntu-branches/ubuntu/trusty/geis/trusty

« back to all changes in this revision

Viewing changes to libgeis/backend/dbus/geis_dbus_backend.c

  • Committer: Package Import Robot
  • Author(s): Stephen M. Webb
  • Date: 2012-11-09 13:57:29 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20121109135729-poludf0asjcht9sx
Tags: 2.2.13-0ubuntu1
* New upstream release.
* debian/control: bumped libgrail-dev build dependency to 3.0.8
* debian/patches: removed all patches (merged upstream)
* debian/patches: patched test case for missing symbols

Show diffs side-by-side

added added

removed removed

Lines of Context:
156
156
  return GEIS_STATUS_UNKNOWN_ERROR;
157
157
}
158
158
 
 
159
static void
 
160
_geis_dbus_token_free_subscription_pdata(GeisBackendToken token GEIS_UNUSED,
 
161
                                         GeisSubscription subscription GEIS_UNUSED)
 
162
{
 
163
}
159
164
 
160
165
static struct GeisBackendTokenVtable _token_vtbl = {
161
166
  _geis_dbus_token_clone,
163
168
  _geis_dbus_token_compose,
164
169
  _geis_dbus_token_activate,
165
170
  _geis_dbus_token_deactivate,
 
171
  _geis_dbus_token_free_subscription_pdata
166
172
};
167
173
 
168
174