ekiga r6428 - in trunk: . lib/engine/framework



Author: dsandras
Date: Mon Jun 30 20:55:36 2008
New Revision: 6428
URL: http://svn.gnome.org/viewvc/ekiga?rev=6428&view=rev

Log:
Apply method to this to avoid confusion with the connect function from the 
sockets library.


Modified:
   trunk/ChangeLog
   trunk/lib/engine/framework/chain-of-responsibility.h

Modified: trunk/lib/engine/framework/chain-of-responsibility.h
==============================================================================
--- trunk/lib/engine/framework/chain-of-responsibility.h	(original)
+++ trunk/lib/engine/framework/chain-of-responsibility.h	Mon Jun 30 20:55:36 2008
@@ -127,10 +127,10 @@
 				   responsibility_accumulator>::slot_type slot_type;
 
     iterator add_handler (const slot_type& slot_)
-    { return connect (slot_); }
+    { return this->connect (slot_); }
 
     bool handle_request (typename sigc::type_trait<T_request>::take request)
-    { return emit (request); }
+    { return this->emit (request); }
 
   };
 };



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