[ekiga] Adjusted comments style to C++ style.



commit 0360d228cdc757598e5d4994404339995ae0b1c7
Author: Damien Sandras <dsandras seconix com>
Date:   Fri May 1 13:18:47 2009 +0200

    Adjusted comments style to C++ style.
---
 lib/engine/components/opal/h323-endpoint.cpp |   12 +++++++-----
 1 files changed, 7 insertions(+), 5 deletions(-)

diff --git a/lib/engine/components/opal/h323-endpoint.cpp b/lib/engine/components/opal/h323-endpoint.cpp
index fdcf64a..5d739c5 100644
--- a/lib/engine/components/opal/h323-endpoint.cpp
+++ b/lib/engine/components/opal/h323-endpoint.cpp
@@ -295,11 +295,11 @@ Opal::H323::EndPoint::Register (const Opal::Account& account)
     SetGatekeeperTimeToLive (account.get_timeout () * 1000);
     bool result = UseGatekeeper (account.get_host (), gatekeeperID);
 
-    /* There was an error (missing parameter or registration failed)
-       or the user chose to not register */
+    // There was an error (missing parameter or registration failed)
+    // or the user chose to not register
     if (!result) {
 
-      /* Registering failed */
+      // Registering failed
       if (gatekeeper) {
 
         switch (gatekeeper->GetRegistrationFailReason ()) {
@@ -330,7 +330,7 @@ Opal::H323::EndPoint::Register (const Opal::Account& account)
       else
         info = _("Failed");
 
-      /* Signal */
+      // Signal
       Ekiga::Runtime::run_in_main (sigc::bind (sigc::mem_fun (this, &Opal::H323::EndPoint::registration_event_in_main),
 					       account,
 					       Ekiga::Account::RegistrationFailed,
@@ -345,15 +345,17 @@ Opal::H323::EndPoint::Register (const Opal::Account& account)
     }
   }
   else if (unregister && IsRegisteredWithGatekeeper (account.get_host ())) {
+    /*
 
     H323EndPoint::RemoveGatekeeper (0);
     RemoveAliasName (account.get_username ());
 
-    /* Signal */
+    // Signal 
     Ekiga::Runtime::run_in_main (sigc::bind (sigc::mem_fun (this, &Opal::H323::EndPoint::registration_event_in_main),
 					     account,
 					     Ekiga::Account::Unregistered,
 					     std::string ()));
+                                             */
   }
 }
 



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