application: Save a few bytes in the library

There's really no need to put useless whitespace into the .so.
This commit is contained in:
Christian Persch 2012-05-05 17:29:44 +02:00
parent 1541478bac
commit ee1965b888

View File

@ -50,36 +50,36 @@ g_dbus_action_group_sync (GDBusActionGroup *group,
*/ */
static const gchar org_gtk_Application_xml[] = static const gchar org_gtk_Application_xml[] =
"<node>" "<node>"
" <interface name='org.gtk.Application'>" "<interface name='org.gtk.Application'>"
" <method name='Activate'>" "<method name='Activate'>"
" <arg type='a{sv}' name='platform-data' direction='in'/>" "<arg type='a{sv}' name='platform-data' direction='in'/>"
" </method>" "</method>"
" <method name='Open'>" "<method name='Open'>"
" <arg type='as' name='uris' direction='in'/>" "<arg type='as' name='uris' direction='in'/>"
" <arg type='s' name='hint' direction='in'/>" "<arg type='s' name='hint' direction='in'/>"
" <arg type='a{sv}' name='platform-data' direction='in'/>" "<arg type='a{sv}' name='platform-data' direction='in'/>"
" </method>" "</method>"
" <method name='CommandLine'>" "<method name='CommandLine'>"
" <arg type='o' name='path' direction='in'/>" "<arg type='o' name='path' direction='in'/>"
" <arg type='aay' name='arguments' direction='in'/>" "<arg type='aay' name='arguments' direction='in'/>"
" <arg type='a{sv}' name='platform-data' direction='in'/>" "<arg type='a{sv}' name='platform-data' direction='in'/>"
" <arg type='i' name='exit-status' direction='out'/>" "<arg type='i' name='exit-status' direction='out'/>"
" </method>" "</method>"
" </interface>" "</interface>"
"</node>"; "</node>";
static GDBusInterfaceInfo *org_gtk_Application; static GDBusInterfaceInfo *org_gtk_Application;
static const gchar org_gtk_private_CommandLine_xml[] = static const gchar org_gtk_private_CommandLine_xml[] =
"<node>" "<node>"
" <interface name='org.gtk.private.CommandLine'>" "<interface name='org.gtk.private.CommandLine'>"
" <method name='Print'>" "<method name='Print'>"
" <arg type='s' name='message' direction='in'/>" "<arg type='s' name='message' direction='in'/>"
" </method>" "</method>"
" <method name='PrintError'>" "<method name='PrintError'>"
" <arg type='s' name='message' direction='in'/>" "<arg type='s' name='message' direction='in'/>"
" </method>" "</method>"
" </interface>" "</interface>"
"</node>"; "</node>";
static GDBusInterfaceInfo *org_gtk_private_CommandLine; static GDBusInterfaceInfo *org_gtk_private_CommandLine;