[ekiga] Fixed compiler warning



commit 8eae8b76b745b9cc8e687b1a1ee6e0adc2d4046e
Author: Julien Puydt <jpuydt gnome org>
Date:   Thu Aug 20 11:02:22 2009 +0200

    Fixed compiler warning
    
    Instance variables must be initialized in the same order
    they were declared...

 lib/engine/components/opal/opal-call.cpp |    6 ++++--
 1 files changed, 4 insertions(+), 2 deletions(-)
---
diff --git a/lib/engine/components/opal/opal-call.cpp b/lib/engine/components/opal/opal-call.cpp
index 58a93d3..c3d91f7 100644
--- a/lib/engine/components/opal/opal-call.cpp
+++ b/lib/engine/components/opal/opal-call.cpp
@@ -91,9 +91,11 @@ private:
 };
 
 
-Opal::Call::Call (OpalManager& _manager, const Ekiga::ServiceCore& _core, const std::string& uri)
+Opal::Call::Call (OpalManager& _manager,
+		  const Ekiga::ServiceCore& _core,
+		  const std::string& uri)
   : OpalCall (_manager), Ekiga::Call (), core (_core), remote_uri (uri),
-    call_setup(false), outgoing(false), jitter(0)
+    call_setup(false), jitter(0), outgoing(false)
 {
   re_a_bytes = tr_a_bytes = re_v_bytes = tr_v_bytes = 0.0;
   last_v_tick = last_a_tick = PTime ();



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