From e9f53760b842b30945992b06a2ee7cd436ac7b2b Mon Sep 17 00:00:00 2001 From: fred Date: Fri, 15 Nov 1996 21:38:55 +0000 Subject: [PATCH] flower-1.0.7 --- flower/cursor.inl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/flower/cursor.inl b/flower/cursor.inl index bdc242590f..0b077bd811 100644 --- a/flower/cursor.inl +++ b/flower/cursor.inl @@ -25,7 +25,7 @@ Cursor::Cursor( const Cursor& cursor ) : template inline T& -Cursor::operator *() +Cursor::thing() { assert( pointer_ ); return pointer_->thing(); @@ -42,16 +42,16 @@ Cursor::operator =( const Cursor& c ) template inline void -Cursor::add( const T& thing ) +Cursor::add( const T& th ) { - list_.add( thing, *this ); + list_.add( th, *this ); } template inline void -Cursor::insert( const T& thing ) +Cursor::insert( const T& th ) { - list_.insert( thing, *this ); + list_.insert( th, *this ); } template -- 2.39.5