ekiga r6330 - in trunk: . src/gui



Author: dsandras
Date: Tue May 27 20:20:21 2008
New Revision: 6330
URL: http://svn.gnome.org/viewvc/ekiga?rev=6330&view=rev

Log:
Applied patch from Fabrice Alphonso to add back the entry to access
the call history in the menu. Thanks !
Applied patch from Matthias Schneidder to add back g_thread_init which
is still needed because we access glib from threads. Thanks!


Modified:
   trunk/ChangeLog
   trunk/src/gui/main.cpp

Modified: trunk/src/gui/main.cpp
==============================================================================
--- trunk/src/gui/main.cpp	(original)
+++ trunk/src/gui/main.cpp	Tue May 27 20:20:21 2008
@@ -254,7 +254,6 @@
  */
 static void gm_mw_init_dialpad (GtkWidget *);
 
-
 /* DESCRIPTION  : /
  * BEHAVIOR     : Builds the video settings popup of the main window.
  * PRE          : The given GtkWidget pointer must be the main window GMObject. 
@@ -1583,6 +1582,11 @@
 			   GTK_SIGNAL_FUNC (radio_menu_changed_cb), 
 			   (gpointer) USER_INTERFACE_KEY "main_window/panel_section",
 			   (cps == DIALPAD), TRUE),
+      GTK_MENU_RADIO_ENTRY("callhistory", _("_Call History"), _("View the call history"),
+			   NULL, 0,
+			   GTK_SIGNAL_FUNC (radio_menu_changed_cb),
+			   (gpointer) USER_INTERFACE_KEY "main_window/panel_section",
+			   (cps == CALL), TRUE),
 
       GTK_MENU_SEPARATOR,
 
@@ -4309,7 +4313,7 @@
   
   /* GTK+ initialization */
   g_type_init ();
-//  g_thread_init (NULL);
+  g_thread_init (NULL);
 //  gdk_threads_init ();
 #ifndef WIN32
   signal (SIGPIPE, SIG_IGN);



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