diff options
Diffstat (limited to 'src/gui/editors/notation/NoteCharacter.cpp')
-rw-r--r-- | src/gui/editors/notation/NoteCharacter.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/editors/notation/NoteCharacter.cpp b/src/gui/editors/notation/NoteCharacter.cpp index e3beed2..9f49131 100644 --- a/src/gui/editors/notation/NoteCharacter.cpp +++ b/src/gui/editors/notation/NoteCharacter.cpp @@ -125,8 +125,8 @@ NoteCharacter::draw(TQPainter *painter, int x, int y) const void NoteCharacter::drawMask(TQPainter *painter, int x, int y) const { - if (!m_rep && m_pixmap->tqmask()) { - painter->drawPixmap(x, y, *(m_pixmap->tqmask())); + if (!m_rep && m_pixmap->mask()) { + painter->drawPixmap(x, y, *(m_pixmap->mask())); } } |