ekiga r7381 - trunk/lib/gmref



Author: jpuydt
Date: Tue Nov 18 20:04:03 2008
New Revision: 7381
URL: http://svn.gnome.org/viewvc/ekiga?rev=7381&view=rev

Log:
Little code simplification

Modified:
   trunk/lib/gmref/gmref.h

Modified: trunk/lib/gmref/gmref.h
==============================================================================
--- trunk/lib/gmref/gmref.h	(original)
+++ trunk/lib/gmref/gmref.h	Tue Nov 18 20:04:03 2008
@@ -78,7 +78,7 @@
 
   ~gmref_ptr ();
 
-  gmref_ptr<T>& operator= (const gmref_ptr<T>& other);
+  gmref_ptr& operator= (const gmref_ptr& other);
 
   T* operator-> () const;
 
@@ -86,11 +86,11 @@
 
   operator bool () const;
 
-  bool operator==(const gmref_ptr<T>& other) const;
+  bool operator==(const gmref_ptr& other) const;
 
-  bool operator!=(const gmref_ptr<T>& other) const;
+  bool operator!=(const gmref_ptr& other) const;
 
-  bool operator<(const gmref_ptr<T>& other) const;
+  bool operator<(const gmref_ptr& other) const;
 
 private:
 



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