[gnome-builder] beautifier plugin: align params to shorten the line



commit acc4858ad82f00571aa15c08c3ff6d12015a1c2b
Author: Sebastien Lafargue <slafargue gnome org>
Date:   Sun Dec 4 00:35:48 2016 +0100

    beautifier plugin: align params to shorten the line

 plugins/beautifier/gb-beautifier-config.c |   16 ++++++++++++++--
 1 files changed, 14 insertions(+), 2 deletions(-)
---
diff --git a/plugins/beautifier/gb-beautifier-config.c b/plugins/beautifier/gb-beautifier-config.c
index 73f0aac..b62288f 100644
--- a/plugins/beautifier/gb-beautifier-config.c
+++ b/plugins/beautifier/gb-beautifier-config.c
@@ -284,14 +284,26 @@ add_entries_from_base_path (GbBeautifierWorkbenchAddin *self,
         {
           real_lang_id = g_file_info_get_display_name (info);
           if (is_a_lang_id (self, real_lang_id) &&
-              add_entries_from_config_ini_file (self, base_path, real_lang_id, real_lang_id, entries, NULL, 
FALSE))
+              add_entries_from_config_ini_file (self,
+                                                base_path,
+                                                real_lang_id,
+                                                real_lang_id,
+                                                entries,
+                                                NULL,
+                                                FALSE))
             ret = TRUE;
 
           for (gint i = 0; i < map->len; ++i)
             {
               entry = &g_array_index (map, GbBeautifierMapEntry, i);
               if (0 == g_strcmp0 (entry->profile, real_lang_id) &&
-                  add_entries_from_config_ini_file (self, base_path, entry->lang_id, real_lang_id, entries, 
entry->default_profile, TRUE))
+                  add_entries_from_config_ini_file (self,
+                                                    base_path,
+                                                    entry->lang_id,
+                                                    real_lang_id,
+                                                    entries,
+                                                    entry->default_profile,
+                                                    TRUE))
                 ret = TRUE;
             }
         }


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]