]> git.donarmstrong.com Git - lilypond.git/commitdiff
flower-1.0.7
authorfred <fred>
Mon, 18 Nov 1996 23:38:26 +0000 (23:38 +0000)
committerfred <fred>
Mon, 18 Nov 1996 23:38:26 +0000 (23:38 +0000)
flower/plist.cc

index bbb0e7428fcba697dc0390ddabaf71524670a485..5c8e47093c9c11799f49b04735db9e13c6749679 100644 (file)
@@ -3,14 +3,10 @@
 // not inlined since it assumes knowledge of destructor.
 template<class T>
 void
-PointerList<T>::remove( Cursor<T> me )
+IPointerList<T>::remove(PCursor<T> me )
 {
     if ( me.ok() ) {
-       delete *me;
-        List<T>::remove( me ); 
+       delete me.ptr();
+        List<void*>::remove(me); 
     }
 }
-
-
-
-