@@ -105,8 +105,8 @@ static void bus_acquired(GDBusConnection* connection, const gchar* name, void* d
105105 ZathuraDbus * dbus = data ;
106106 ZathuraDbusPrivate * priv = zathura_dbus_get_instance_private (dbus );
107107
108- g_autoptr (GError ) error = NULL ;
109- priv -> registration_id = g_dbus_connection_register_object (
108+ g_autoptr (GError ) error = NULL ;
109+ priv -> registration_id = g_dbus_connection_register_object (
110110 connection , DBUS_OBJPATH , priv -> introspection_data -> interfaces [0 ], & interface_vtable , dbus , NULL , & error );
111111 if (priv -> registration_id == 0 ) {
112112 girara_warning ("Failed to register object on D-Bus connection: %s" , error -> message );
@@ -140,7 +140,7 @@ ZathuraDbus* zathura_dbus_new(zathura_t* zathura) {
140140 return NULL ;
141141 }
142142
143- g_autoptr (GError ) error = NULL ;
143+ g_autoptr (GError ) error = NULL ;
144144 priv -> introspection_data = g_dbus_node_info_new_for_xml ((const char * )g_bytes_get_data (xml_data , NULL ), & error );
145145
146146 if (priv -> introspection_data == NULL ) {
@@ -192,7 +192,7 @@ void zathura_dbus_edit(zathura_t* zathura, unsigned int page, unsigned int x, un
192192static void handle_open_document (zathura_t * zathura , GVariant * parameters , GDBusMethodInvocation * invocation ) {
193193 g_autofree gchar * filename = NULL ;
194194 g_autofree gchar * password = NULL ;
195- gint page = ZATHURA_PAGE_NUMBER_UNSPECIFIED ;
195+ gint page = ZATHURA_PAGE_NUMBER_UNSPECIFIED ;
196196 g_variant_get (parameters , "(ssi)" , & filename , & password , & page );
197197
198198 document_close (zathura , false);
@@ -259,8 +259,8 @@ static void synctex_highlight_rects_idle(zathura_t* zathura, girara_list_t** rec
259259static void handle_highlight_rects (zathura_t * zathura , GVariant * parameters , GDBusMethodInvocation * invocation ) {
260260 const unsigned int number_of_pages = zathura_document_get_number_of_pages (zathura_get_document (zathura ));
261261
262- guint page = 0 ;
263- g_autoptr (GVariantIter ) iter = NULL ;
262+ guint page = 0 ;
263+ g_autoptr (GVariantIter ) iter = NULL ;
264264 g_autoptr (GVariantIter ) secondary_iter = NULL ;
265265 g_variant_get (parameters , "(ua(dddd)a(udddd))" , & page , & iter , & secondary_iter );
266266
@@ -382,7 +382,7 @@ static void handle_execute_command(zathura_t* zathura, GVariant* parameters, GDB
382382 g_autofree gchar * input = NULL ;
383383 g_variant_get (parameters , "(s)" , & input );
384384
385- const bool ret = girara_command_run (zathura -> ui .session , input );
385+ const bool ret = girara_command_run (zathura -> ui .session , input );
386386 GVariant * result = g_variant_new ("(b)" , ret );
387387 g_dbus_method_invocation_return_value (invocation , result );
388388}
0 commit comments