diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-26 17:42:48 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2011-11-26 17:42:48 -0600 |
commit | 4b3c5dd929ea78ca3b6f656a63d70b10d2f43885 (patch) | |
tree | 995c0d3e35794c1bb1029d6b7eacdd80827807bd /src/gui/editors/notation/NotationCanvasView.cpp | |
parent | 1461610fb35bb0fcee490f274ea84b8ebfeb1566 (diff) | |
download | rosegarden-4b3c5dd929ea78ca3b6f656a63d70b10d2f43885.tar.gz rosegarden-4b3c5dd929ea78ca3b6f656a63d70b10d2f43885.zip |
Fix FTBFS
Diffstat (limited to 'src/gui/editors/notation/NotationCanvasView.cpp')
-rw-r--r-- | src/gui/editors/notation/NotationCanvasView.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/editors/notation/NotationCanvasView.cpp b/src/gui/editors/notation/NotationCanvasView.cpp index a80d04d..7e7f4c9 100644 --- a/src/gui/editors/notation/NotationCanvasView.cpp +++ b/src/gui/editors/notation/NotationCanvasView.cpp @@ -186,7 +186,7 @@ void NotationCanvasView::contentsMousePressEvent(TQMouseEvent *e) for (it = itemList.begin(); it != itemList.end(); ++it) { - if ((*it)->active()) { + if ((*it)->isActive()) { emit activeItemPressed(e, *it); return ; } @@ -284,7 +284,7 @@ NotationCanvasView::processActiveItems(TQMouseEvent* e, for (it = itemList.begin(); it != itemList.end(); ++it) { TQCanvasItem *item = *it; - if (item->active() && !pressedItem) { + if (item->isActive() && !pressedItem) { NOTATION_DEBUG << "mousepress : got active item\n"; pressedItem = item; } |