[gnome-builder] meson-templates: fix spacing



commit 871843a6f853c42034e2765a901b2d6cf54fab97
Author: Christian Hergert <chergert redhat com>
Date:   Sun Jul 18 10:17:10 2021 -0700

    meson-templates: fix spacing

 .../meson-templates/resources/src/main-gtk4.c      | 56 +++++++++++-----------
 1 file changed, 28 insertions(+), 28 deletions(-)
---
diff --git a/src/plugins/meson-templates/resources/src/main-gtk4.c 
b/src/plugins/meson-templates/resources/src/main-gtk4.c
index 833322856..4229484d4 100644
--- a/src/plugins/meson-templates/resources/src/main-gtk4.c
+++ b/src/plugins/meson-templates/resources/src/main-gtk4.c
@@ -11,32 +11,32 @@ int
 main (int   argc,
       char *argv[])
 {
-  g_autoptr({{PreFix}}Application) app = NULL;
-  int ret;
-
-  /* Set up gettext translations */
-  bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
-  bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
-  textdomain (GETTEXT_PACKAGE);
-
-  /*
-   * Create a new GtkApplication. The application manages our main loop,
-   * application windows, integration with the window manager/compositor, and
-   * desktop features such as file opening and single-instance applications.
-   */
-  app = {{prefix_}}_application_new ("{{appid}}", G_APPLICATION_FLAGS_NONE);
-
-  /*
-   * Run the application. This function will block until the application
-   * exits. Upon return, we have our exit code to return to the shell. (This
-   * is the code you see when you do `echo $?` after running a command in a
-   * terminal.
-   *
-   * Since GtkApplication inherits from GApplication, we use the parent class
-   * method "run". But we need to cast, which is what the "G_APPLICATION()"
-   * macro does.
-   */
-  ret = g_application_run (G_APPLICATION (app), argc, argv);
-
-  return ret;
+       g_autoptr({{PreFix}}Application) app = NULL;
+       int ret;
+
+       /* Set up gettext translations */
+       bindtextdomain (GETTEXT_PACKAGE, LOCALEDIR);
+       bind_textdomain_codeset (GETTEXT_PACKAGE, "UTF-8");
+       textdomain (GETTEXT_PACKAGE);
+
+       /*
+        * Create a new GtkApplication. The application manages our main loop,
+        * application windows, integration with the window manager/compositor, and
+        * desktop features such as file opening and single-instance applications.
+        */
+       app = {{prefix_}}_application_new ("{{appid}}", G_APPLICATION_FLAGS_NONE);
+
+       /*
+        * Run the application. This function will block until the application
+        * exits. Upon return, we have our exit code to return to the shell. (This
+        * is the code you see when you do `echo $?` after running a command in a
+        * terminal.
+        *
+        * Since GtkApplication inherits from GApplication, we use the parent class
+        * method "run". But we need to cast, which is what the "G_APPLICATION()"
+        * macro does.
+        */
+       ret = g_application_run (G_APPLICATION (app), argc, argv);
+
+       return ret;
 }


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