ekiga r7451 - in trunk: . src/gui



Author: dsandras
Date: Thu Dec 11 18:10:52 2008
New Revision: 7451
URL: http://svn.gnome.org/viewvc/ekiga?rev=7451&view=rev

Log:
Fixed crash on missed call as reported by Thomas Schorpp.


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	Thu Dec 11 18:10:52 2008
@@ -697,6 +697,7 @@
   audiooutput_core->stop_play_event("ring_tone_sound");
 
   ekiga_main_window_clear_signal_levels (mw);
+
 }
 
 
@@ -766,6 +767,8 @@
 			  call->get_remote_party_name ().c_str ());
   ekiga_main_window_push_message (mw, "%s", info);
   g_free (info);
+
+  ekiga_main_window_update_calling_state (mw, Standby);
 }
 
 
@@ -4036,7 +4039,7 @@
   
   conn = call_core->missed_call.connect (sigc::bind (sigc::ptr_fun (on_missed_call_cb), (gpointer) mw));
   mw->priv->connections.push_back (conn);
-  
+
   conn = call_core->stream_opened.connect (sigc::bind (sigc::ptr_fun (on_stream_opened_cb), (gpointer) mw));
   mw->priv->connections.push_back (conn);
   



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