ekiga r6181 - in trunk: . src/endpoints



Author: dsandras
Date: Sat Apr 12 15:24:06 2008
New Revision: 6181
URL: http://svn.gnome.org/viewvc/ekiga?rev=6181&view=rev

Log:
Removed unuseful traces.


Modified:
   trunk/ChangeLog
   trunk/src/endpoints/opal-call.cpp

Modified: trunk/src/endpoints/opal-call.cpp
==============================================================================
--- trunk/src/endpoints/opal-call.cpp	(original)
+++ trunk/src/endpoints/opal-call.cpp	Sat Apr 12 15:24:06 2008
@@ -287,7 +287,6 @@
 
   NoAnswerTimer.Stop (false);
 
-  std::cout << "releasing " << connection << std::endl << std::flush;
   /** TODO
    * the Call could be destroyed before the signal callback has been executed
    * maybe create a copy constructor
@@ -298,7 +297,6 @@
         && !is_outgoing ()
         && connection.GetCallEndReason () != OpalConnection::EndedByAnswerDenied) {
 
-      std::cout << "emit missed " << std::endl << std::flush;
       runtime.run_in_main (missed.make_slot ());
     }
     else {
@@ -414,9 +412,7 @@
 
   outgoing = PIsDescendant(&connection, OpalPCSSConnection);
 
-  std::cout << "OnSetUp " << outgoing << std::endl << std::flush;
   runtime.run_in_main (setup.make_slot ());
-  std::cout << "emitted OnSetUp " << outgoing << std::endl << std::flush;
 
   if (!outgoing)
     NoAnswerTimer.SetInterval (0, PMIN (10, 60));
@@ -531,8 +527,6 @@
 
   int i = 0;
 
-  std::cout << "Should answer" << std::endl << std::flush;
-
   if (!is_outgoing () && !IsEstablished ()) {
 
     do {
@@ -541,10 +535,8 @@
       i++;
     }  while (!PIsDescendant(&(*connection), OpalPCSSConnection));
 
-    std::cout << "Should answer found" << std::endl << std::flush;
     if (PIsDescendant(&(*connection), OpalPCSSConnection)) {
       PDownCast (OpalPCSSConnection, &(*connection))->AcceptIncoming ();
-      std::cout << "ici" << std::endl << std::flush;
     }
   }
 }



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