ekiga r7426 - trunk/lib/engine/components/xcap



Author: jpuydt
Date: Tue Dec  2 21:18:19 2008
New Revision: 7426
URL: http://svn.gnome.org/viewvc/ekiga?rev=7426&view=rev

Log:
Removed debugging std::couts in the XCAP code : it works!

Modified:
   trunk/lib/engine/components/xcap/xcap-core.cpp

Modified: trunk/lib/engine/components/xcap/xcap-core.cpp
==============================================================================
--- trunk/lib/engine/components/xcap/xcap-core.cpp	(original)
+++ trunk/lib/engine/components/xcap/xcap-core.cpp	Tue Dec  2 21:18:19 2008
@@ -291,7 +291,6 @@
 XCAP::Core::read (gmref_ptr<XCAP::Path> path,
 		  sigc::slot2<void, bool,std::string> callback)
 {
-  std::cout << "XCAP trying to read " << path->to_uri () << std::endl;
   impl->read (path, callback);
 }
 
@@ -301,11 +300,6 @@
 		   const std::string content,
 		   sigc::slot1<void,std::string> callback)
 {
-  std::cout << "XCAP trying to write"
-	    << " (" << content_type << "):"
-	    << content << std::endl
-	    << "to:" << std::endl
-	    << path->to_uri () << std::endl;
   impl->write (path, content_type, content, callback);
 }
 
@@ -313,6 +307,5 @@
 XCAP::Core::erase (gmref_ptr<Path> path,
 		   sigc::slot1<void,std::string> callback)
 {
-  std::cout << "XCAP trying to erase " << path->to_uri () << std::endl;
   impl->erase (path, callback);
 }



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