ekiga r6355 - in trunk: . lib/engine lib/engine/addressbook/call-history lib/engine/addressbook/evolution lib/engine/addressbook/ldap lib/engine/addressbook/skel lib/engine/audioinput/skel lib/engine/audiooutput/skel lib/engine/framework lib/engine/gui/gtk-core lib/engine/presence/avahi lib/engine/presence/local-roster lib/engine/presence/skel lib/engine/videoinput/skel lib/engine/videooutput/skel
- From: dsandras svn gnome org
- To: svn-commits-list gnome org
- Subject: ekiga r6355 - in trunk: . lib/engine lib/engine/addressbook/call-history lib/engine/addressbook/evolution lib/engine/addressbook/ldap lib/engine/addressbook/skel lib/engine/audioinput/skel lib/engine/audiooutput/skel lib/engine/framework lib/engine/gui/gtk-core lib/engine/presence/avahi lib/engine/presence/local-roster lib/engine/presence/skel lib/engine/videoinput/skel lib/engine/videooutput/skel
- Date: Tue, 3 Jun 2008 20:57:42 +0000 (UTC)
Author: dsandras
Date: Tue Jun 3 20:57:41 2008
New Revision: 6355
URL: http://svn.gnome.org/viewvc/ekiga?rev=6355&view=rev
Log:
Removed debug output.
Modified:
trunk/ChangeLog
trunk/lib/engine/addressbook/call-history/history-book.cpp
trunk/lib/engine/addressbook/call-history/history-source.cpp
trunk/lib/engine/addressbook/evolution/evolution-book.cpp
trunk/lib/engine/addressbook/evolution/evolution-source.cpp
trunk/lib/engine/addressbook/ldap/ldap-book.cpp
trunk/lib/engine/addressbook/ldap/ldap-source.cpp
trunk/lib/engine/addressbook/skel/contact-core.cpp
trunk/lib/engine/audioinput/skel/audioinput-core.cpp
trunk/lib/engine/audiooutput/skel/audiooutput-core.cpp
trunk/lib/engine/engine.cpp
trunk/lib/engine/framework/form-request-simple.cpp
trunk/lib/engine/framework/menu-xml.cpp
trunk/lib/engine/framework/services.cpp
trunk/lib/engine/gui/gtk-core/form-dialog-gtk.cpp
trunk/lib/engine/presence/avahi/avahi-cluster.cpp
trunk/lib/engine/presence/avahi/avahi-heap.cpp
trunk/lib/engine/presence/local-roster/local-cluster.cpp
trunk/lib/engine/presence/local-roster/local-heap.cpp
trunk/lib/engine/presence/local-roster/local-roster-bridge.cpp
trunk/lib/engine/presence/skel/presence-core.cpp
trunk/lib/engine/videoinput/skel/videoinput-core.cpp
trunk/lib/engine/videooutput/skel/videooutput-core.cpp
Modified: trunk/lib/engine/addressbook/call-history/history-book.cpp
==============================================================================
--- trunk/lib/engine/addressbook/call-history/history-book.cpp (original)
+++ trunk/lib/engine/addressbook/call-history/history-book.cpp Tue Jun 3 20:57:41 2008
@@ -91,9 +91,6 @@
History::Book::~Book ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
if (doc != NULL)
xmlFreeDoc (doc);
}
Modified: trunk/lib/engine/addressbook/call-history/history-source.cpp
==============================================================================
--- trunk/lib/engine/addressbook/call-history/history-source.cpp (original)
+++ trunk/lib/engine/addressbook/call-history/history-source.cpp Tue Jun 3 20:57:41 2008
@@ -46,9 +46,6 @@
History::Source::~Source ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
}
const std::set<std::string>
Modified: trunk/lib/engine/addressbook/evolution/evolution-book.cpp
==============================================================================
--- trunk/lib/engine/addressbook/evolution/evolution-book.cpp (original)
+++ trunk/lib/engine/addressbook/evolution/evolution-book.cpp Tue Jun 3 20:57:41 2008
@@ -224,10 +224,6 @@
g_object_unref (book);
delete self;
-
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
}
const std::string
Modified: trunk/lib/engine/addressbook/evolution/evolution-source.cpp
==============================================================================
--- trunk/lib/engine/addressbook/evolution/evolution-source.cpp (original)
+++ trunk/lib/engine/addressbook/evolution/evolution-source.cpp Tue Jun 3 20:57:41 2008
@@ -157,10 +157,6 @@
Evolution::Source::~Source ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
-
g_object_unref (source_list);
}
Modified: trunk/lib/engine/addressbook/ldap/ldap-book.cpp
==============================================================================
--- trunk/lib/engine/addressbook/ldap/ldap-book.cpp (original)
+++ trunk/lib/engine/addressbook/ldap/ldap-book.cpp Tue Jun 3 20:57:41 2008
@@ -271,9 +271,6 @@
OPENLDAP::Book::~Book ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
}
const std::string
Modified: trunk/lib/engine/addressbook/ldap/ldap-source.cpp
==============================================================================
--- trunk/lib/engine/addressbook/ldap/ldap-source.cpp (original)
+++ trunk/lib/engine/addressbook/ldap/ldap-source.cpp Tue Jun 3 20:57:41 2008
@@ -122,9 +122,6 @@
OPENLDAP::Source::~Source ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
}
bool
Modified: trunk/lib/engine/addressbook/skel/contact-core.cpp
==============================================================================
--- trunk/lib/engine/addressbook/skel/contact-core.cpp (original)
+++ trunk/lib/engine/addressbook/skel/contact-core.cpp Tue Jun 3 20:57:41 2008
@@ -47,9 +47,6 @@
Ekiga::ContactCore::~ContactCore ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
}
bool
Modified: trunk/lib/engine/audioinput/skel/audioinput-core.cpp
==============================================================================
--- trunk/lib/engine/audioinput/skel/audioinput-core.cpp (original)
+++ trunk/lib/engine/audioinput/skel/audioinput-core.cpp Tue Jun 3 20:57:41 2008
@@ -143,10 +143,6 @@
AudioInputCore::~AudioInputCore ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
-
PWaitAndSignal m(core_mutex);
if (audioinput_core_conf_bridge)
Modified: trunk/lib/engine/audiooutput/skel/audiooutput-core.cpp
==============================================================================
--- trunk/lib/engine/audiooutput/skel/audiooutput-core.cpp (original)
+++ trunk/lib/engine/audiooutput/skel/audiooutput-core.cpp Tue Jun 3 20:57:41 2008
@@ -67,10 +67,6 @@
AudioOutputCore::~AudioOutputCore ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
-
PWaitAndSignal m_pri(core_mutex[primary]);
PWaitAndSignal m_sec(core_mutex[secondary]);
Modified: trunk/lib/engine/engine.cpp
==============================================================================
--- trunk/lib/engine/engine.cpp (original)
+++ trunk/lib/engine/engine.cpp Tue Jun 3 20:57:41 2008
@@ -201,7 +201,6 @@
}
if (!avahi_publisher_init (*core, &argc, &argv)) {
- std::cout << "delete" << std::endl << std::flush;
delete core;
return;
}
Modified: trunk/lib/engine/framework/form-request-simple.cpp
==============================================================================
--- trunk/lib/engine/framework/form-request-simple.cpp (original)
+++ trunk/lib/engine/framework/form-request-simple.cpp Tue Jun 3 20:57:41 2008
@@ -44,9 +44,6 @@
Ekiga::FormRequestSimple::~FormRequestSimple ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
}
void
Modified: trunk/lib/engine/framework/menu-xml.cpp
==============================================================================
--- trunk/lib/engine/framework/menu-xml.cpp (original)
+++ trunk/lib/engine/framework/menu-xml.cpp Tue Jun 3 20:57:41 2008
@@ -67,9 +67,6 @@
Ekiga::MenuXML::~MenuXML ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
}
void
Modified: trunk/lib/engine/framework/services.cpp
==============================================================================
--- trunk/lib/engine/framework/services.cpp (original)
+++ trunk/lib/engine/framework/services.cpp Tue Jun 3 20:57:41 2008
@@ -39,9 +39,6 @@
Ekiga::ServiceCore::~ServiceCore ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
for (std::list<Service *>::iterator iter = services.begin ();
iter != services.end ();
iter++)
Modified: trunk/lib/engine/gui/gtk-core/form-dialog-gtk.cpp
==============================================================================
--- trunk/lib/engine/gui/gtk-core/form-dialog-gtk.cpp (original)
+++ trunk/lib/engine/gui/gtk-core/form-dialog-gtk.cpp Tue Jun 3 20:57:41 2008
@@ -615,10 +615,6 @@
FormDialog::~FormDialog ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
-
gtk_widget_destroy (GTK_WIDGET (window));
for (std::list<Submitter *>::iterator iter = submitters.begin ();
iter != submitters.end ();
@@ -873,8 +869,6 @@
rows++;
gtk_table_resize (GTK_TABLE (fields), rows, 2);
- std::cout << "ici" << std::endl << std::flush;
-
label = gtk_label_new (description.c_str ());
gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
#if GTK_CHECK_VERSION(2,10,0)
Modified: trunk/lib/engine/presence/avahi/avahi-cluster.cpp
==============================================================================
--- trunk/lib/engine/presence/avahi/avahi-cluster.cpp (original)
+++ trunk/lib/engine/presence/avahi/avahi-cluster.cpp Tue Jun 3 20:57:41 2008
@@ -46,9 +46,6 @@
Avahi::Cluster::~Cluster ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
}
void
Modified: trunk/lib/engine/presence/avahi/avahi-heap.cpp
==============================================================================
--- trunk/lib/engine/presence/avahi/avahi-heap.cpp (original)
+++ trunk/lib/engine/presence/avahi/avahi-heap.cpp Tue Jun 3 20:57:41 2008
@@ -110,10 +110,6 @@
Avahi::Heap::~Heap ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
-
if (browser != NULL)
avahi_service_browser_free (browser);
Modified: trunk/lib/engine/presence/local-roster/local-cluster.cpp
==============================================================================
--- trunk/lib/engine/presence/local-roster/local-cluster.cpp (original)
+++ trunk/lib/engine/presence/local-roster/local-cluster.cpp Tue Jun 3 20:57:41 2008
@@ -52,9 +52,6 @@
Local::Cluster::~Cluster ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
}
bool
Modified: trunk/lib/engine/presence/local-roster/local-heap.cpp
==============================================================================
--- trunk/lib/engine/presence/local-roster/local-heap.cpp (original)
+++ trunk/lib/engine/presence/local-roster/local-heap.cpp Tue Jun 3 20:57:41 2008
@@ -87,9 +87,6 @@
Local::Heap::~Heap ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
if (doc != NULL)
xmlFreeDoc (doc);
}
Modified: trunk/lib/engine/presence/local-roster/local-roster-bridge.cpp
==============================================================================
--- trunk/lib/engine/presence/local-roster/local-roster-bridge.cpp (original)
+++ trunk/lib/engine/presence/local-roster/local-roster-bridge.cpp Tue Jun 3 20:57:41 2008
@@ -59,9 +59,6 @@
~ContactDecorator ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
}
const std::string get_name () const
Modified: trunk/lib/engine/presence/skel/presence-core.cpp
==============================================================================
--- trunk/lib/engine/presence/skel/presence-core.cpp (original)
+++ trunk/lib/engine/presence/skel/presence-core.cpp Tue Jun 3 20:57:41 2008
@@ -85,9 +85,6 @@
Ekiga::PresenceCore::~PresenceCore ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
}
void
Modified: trunk/lib/engine/videoinput/skel/videoinput-core.cpp
==============================================================================
--- trunk/lib/engine/videoinput/skel/videoinput-core.cpp (original)
+++ trunk/lib/engine/videoinput/skel/videoinput-core.cpp Tue Jun 3 20:57:41 2008
@@ -143,10 +143,6 @@
VideoInputCore::~VideoInputCore ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
-
PWaitAndSignal m(core_mutex);
if (videoinput_core_conf_bridge)
Modified: trunk/lib/engine/videooutput/skel/videooutput-core.cpp
==============================================================================
--- trunk/lib/engine/videooutput/skel/videooutput-core.cpp (original)
+++ trunk/lib/engine/videooutput/skel/videooutput-core.cpp Tue Jun 3 20:57:41 2008
@@ -60,10 +60,6 @@
VideoOutputCore::~VideoOutputCore ()
{
-#ifdef __GNUC__
- std::cout << __PRETTY_FUNCTION__ << std::endl;
-#endif
-
PWaitAndSignal m(core_mutex);
if (videooutput_core_conf_bridge)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]