]> git.donarmstrong.com Git - lilypond.git/commitdiff
flower-1.0.20
authorfred <fred>
Wed, 15 Jan 1997 20:47:30 +0000 (20:47 +0000)
committerfred <fred>
Wed, 15 Jan 1997 20:47:30 +0000 (20:47 +0000)
flower/pcursor.hh
flower/plist.tcc

index 383a450a1ae4a2f4ce0eac353a9d9722b856c903..a6b99c9097526d771aa099289d1e0ec8541b850b 100644 (file)
@@ -18,8 +18,8 @@ struct PCursor : private Cursor<void *> {
     void junk();
 public:
     Cursor<void*>::ok;
-    void del() { junk(); Cursor<void*>::del(); }
-    void backspace() { junk(); Cursor<void*>::backspace(); }
+    Cursor<void*>::del;
+    Cursor<void*>::backspace;
     T get() {
        T p = ptr();
        Cursor<void*>::del();
index 69986035d2a018b330215ed14e793fdb897e6caa..1dea8cefc123354cf27221f0a2bdd45413233acc 100644 (file)
@@ -5,7 +5,7 @@ IPointerList<T>::~IPointerList()
 {
     PCursor<T> c( *this );
     while (c.ok()) {
-       c.del();
+       delete c.get();
     }
 }