[vte] widget: Change function name



commit 894e4dacb566119c325df543c9c836039b1a3b67
Author: Christian Persch <chpe gnome org>
Date:   Fri Feb 5 19:50:30 2016 +0100

    widget: Change function name

 src/vte.cc |   13 ++++++-------
 1 files changed, 6 insertions(+), 7 deletions(-)
---
diff --git a/src/vte.cc b/src/vte.cc
index 75fc13f..16da473 100644
--- a/src/vte.cc
+++ b/src/vte.cc
@@ -776,7 +776,7 @@ VteTerminalPrivate::queue_cursor_moved()
 }
 
 static gboolean
-vte_terminal_emit_eof_cb(VteTerminal *terminal)
+emit_eof_idle_cb(VteTerminal *terminal)
 {
         G_GNUC_BEGIN_IGNORE_DEPRECATIONS;
        gdk_threads_enter ();
@@ -804,12 +804,11 @@ VteTerminalPrivate::emit_eof()
 void
 VteTerminalPrivate::queue_eof()
 {
-       _vte_debug_print(VTE_DEBUG_SIGNALS,
-                       "Queueing `eof'.\n");
-       g_idle_add_full (G_PRIORITY_HIGH,
-               (GSourceFunc) vte_terminal_emit_eof_cb,
-               g_object_ref(m_terminal),
-               g_object_unref);
+        _vte_debug_print(VTE_DEBUG_SIGNALS, "Queueing `eof'.\n");
+        g_idle_add_full(G_PRIORITY_HIGH,
+                        (GSourceFunc)emit_eof_idle_cb,
+                        g_object_ref(m_terminal),
+                        g_object_unref);
 }
 
 /* Emit a "char-size-changed" signal. */


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