[tepl] Tab loading: rename function



commit 81fb6be1f8b25b7e622b1f030970eabfaa04a8e6
Author: Sébastien Wilmet <swilmet gnome org>
Date:   Sun May 24 16:07:40 2020 +0200

    Tab loading: rename function

 tepl/tepl-tab-loading.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/tepl/tepl-tab-loading.c b/tepl/tepl-tab-loading.c
index 7b381f8..7d3fd48 100644
--- a/tepl/tepl-tab-loading.c
+++ b/tepl/tepl-tab-loading.c
@@ -9,9 +9,9 @@
 #include "tepl-info-bar.h"
 
 static void
-load_file_content_cb (GObject      *source_object,
-                     GAsyncResult *result,
-                     gpointer      user_data)
+load_file_cb (GObject      *source_object,
+             GAsyncResult *result,
+             gpointer      user_data)
 {
        TeplFileLoader *loader = TEPL_FILE_LOADER (source_object);
        TeplTab *tab = TEPL_TAB (user_data);
@@ -78,6 +78,6 @@ tepl_tab_load_file (TeplTab *tab,
        tepl_file_loader_load_async (loader,
                                     G_PRIORITY_DEFAULT,
                                     NULL, /* cancellable */
-                                    load_file_content_cb,
+                                    load_file_cb,
                                     g_object_ref (tab));
 }


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