[ekiga/gnome-2-26] Another round of "let's make sigc::mem_fun uses look all alike".



commit bfde0b84e6d58ed1961d6b790221b0258a80716f
Author: Julien Puydt <jpuydt src gnome org>
Date:   Tue Mar 17 20:28:26 2009 +0000

    Another round of "let's make sigc::mem_fun uses look all alike".
    
    svn path=/trunk/; revision=7781
---
 lib/engine/components/resource-list/rl-heap.cpp    |    6 ++----
 .../components/resource-list/rl-presentity.cpp     |    6 ++----
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/lib/engine/components/resource-list/rl-heap.cpp b/lib/engine/components/resource-list/rl-heap.cpp
index b505fe4..8786039 100644
--- a/lib/engine/components/resource-list/rl-heap.cpp
+++ b/lib/engine/components/resource-list/rl-heap.cpp
@@ -412,8 +412,7 @@ RL::Heap::push_status (const std::string uri_,
 void
 RL::Heap::edit ()
 {
-  Ekiga::FormRequestSimple request(sigc::mem_fun (this,
-						  &RL::Heap::on_edit_form_submitted));
+  Ekiga::FormRequestSimple request(sigc::mem_fun (this, &RL::Heap::on_edit_form_submitted));
 
   std::string name_str;
   std::string root_str;
@@ -629,8 +628,7 @@ RL::Heap::on_new_entry_form_submitted (bool submitted,
       gmref_ptr<XCAP::Core> xcap(services.get ("xcap-core"));
       xcap->write (path, "application/xcap-el+xml",
 		   (const char*)xmlBufferContent (buffer),
-		   sigc::mem_fun (this,
-				  &RL::Heap::new_entry_result));
+		   sigc::mem_fun (this, &RL::Heap::new_entry_result));
     }
     xmlBufferFree (buffer);
   } catch (Ekiga::Form::not_found exc) {
diff --git a/lib/engine/components/resource-list/rl-presentity.cpp b/lib/engine/components/resource-list/rl-presentity.cpp
index e898486..8011504 100644
--- a/lib/engine/components/resource-list/rl-presentity.cpp
+++ b/lib/engine/components/resource-list/rl-presentity.cpp
@@ -313,8 +313,7 @@ RL::Presentity::save (bool reload)
     gmref_ptr<XCAP::Core> xcap(services.get ("xcap-core"));
     xcap->write (path, "application/xcap-el+xml",
 		 (const char*)xmlBufferContent (buffer),
-		 sigc::bind (sigc::mem_fun (this,
-					    &RL::Presentity::save_result),
+		 sigc::bind (sigc::mem_fun (this, &RL::Presentity::save_result),
 			     reload));
   }
 
@@ -333,8 +332,7 @@ RL::Presentity::remove ()
 
   gmref_ptr<XCAP::Core> xcap(services.get ("xcap-core"));
   xcap->erase (path,
-	       sigc::mem_fun (this,
-			      &RL::Presentity::erase_result));
+	       sigc::mem_fun (this, &RL::Presentity::erase_result));
 }
 
 void



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