From bac0d6090390b9d4080ee3b930c4901c7fd9ee1a Mon Sep 17 00:00:00 2001 From: fred Date: Thu, 19 Dec 1996 01:05:44 +0000 Subject: [PATCH] lilypond-0.0.18 --- src/pcol.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pcol.cc b/src/pcol.cc index 2fab154829..951be6fa5f 100644 --- a/src/pcol.cc +++ b/src/pcol.cc @@ -19,7 +19,7 @@ PCol::rank() const { if(!pscore_) return -1; - PCursor me=pscore_->find_col(this); + PCursor me=pscore_->find_col( (PCol*)this); if (!me.ok()) return -1; PCursor bot(pscore_->cols.top()); @@ -51,7 +51,7 @@ PCol::print() const int PCol::compare(const PCol &c1, const PCol &c2) { - return c1.pscore_->compare_pcols(&c1,&c2); + return c1.pscore_->compare_pcols((PCol*)&c1,(PCol*)&c2); } void -- 2.39.5