[ekiga] Fix choice of status icon in the systray, bug introduced recently



commit 99901449ed29f9de8794a15deff113b7adef5b50
Author: Eugen Dedu <Eugen Dedu pu-pm univ-fcomte fr>
Date:   Sat Mar 31 14:54:46 2012 +0200

    Fix choice of status icon in the systray, bug introduced recently

 src/gui/statusicon.cpp |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/gui/statusicon.cpp b/src/gui/statusicon.cpp
index 9307f6c..6416d0a 100644
--- a/src/gui/statusicon.cpp
+++ b/src/gui/statusicon.cpp
@@ -511,13 +511,13 @@ statusicon_set_status (StatusIcon *statusicon,
 
   /* Update the status icon */
   if (presence == "away")
-    gtk_status_icon_set_from_icon_name (GTK_STATUS_ICON (statusicon), "user-available");
+    gtk_status_icon_set_from_icon_name (GTK_STATUS_ICON (statusicon), "user-away");
   else if (presence == "dnd")
     gtk_status_icon_set_from_icon_name (GTK_STATUS_ICON (statusicon), "user-busy");
   else if (presence == "offline")
     gtk_status_icon_set_from_icon_name (GTK_STATUS_ICON (statusicon), "user-offline");
   else
-    gtk_status_icon_set_from_icon_name (GTK_STATUS_ICON (statusicon), "user-online");
+    gtk_status_icon_set_from_icon_name (GTK_STATUS_ICON (statusicon), "user-available");
 
   statusicon->priv->status = presence;
 }



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