[gnome-settings-daemon] color: Fix typo in function name



commit b8117a489656c83a24a266c78a6e43e9e1feba1b
Author: Bastien Nocera <hadess hadess net>
Date:   Thu Feb 16 15:04:19 2017 +0100

    color: Fix typo in function name
    
    s/tempertature/temperature/

 plugins/color/gsd-color-manager.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)
---
diff --git a/plugins/color/gsd-color-manager.c b/plugins/color/gsd-color-manager.c
index c8bcf32..393f43c 100644
--- a/plugins/color/gsd-color-manager.c
+++ b/plugins/color/gsd-color-manager.c
@@ -207,9 +207,9 @@ on_disabled_until_tmw_notify (GsdNightLight *nlight,
 }
 
 static void
-on_tempertature_notify (GsdNightLight *nlight,
-                        GParamSpec      *pspec,
-                        gpointer         user_data)
+on_temperature_notify (GsdNightLight *nlight,
+                       GParamSpec      *pspec,
+                       gpointer         user_data)
 {
         GsdColorManager *manager = GSD_COLOR_MANAGER (user_data);
         GsdColorManagerPrivate *priv = manager->priv;
@@ -239,7 +239,7 @@ gsd_color_manager_init (GsdColorManager *manager)
         g_signal_connect (priv->nlight, "notify::sunrise",
                           G_CALLBACK (on_sunrise_notify), manager);
         g_signal_connect (priv->nlight, "notify::temperature",
-                          G_CALLBACK (on_tempertature_notify), manager);
+                          G_CALLBACK (on_temperature_notify), manager);
         g_signal_connect (priv->nlight, "notify::disabled-until-tmw",
                           G_CALLBACK (on_disabled_until_tmw_notify), manager);
 }


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