summaryrefslogtreecommitdiffstats
path: root/src/gui/editors/notation/NotationSelectionPaster.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/editors/notation/NotationSelectionPaster.cpp')
-rw-r--r--src/gui/editors/notation/NotationSelectionPaster.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/editors/notation/NotationSelectionPaster.cpp b/src/gui/editors/notation/NotationSelectionPaster.cpp
index b1f8d4b..d3bba0e 100644
--- a/src/gui/editors/notation/NotationSelectionPaster.cpp
+++ b/src/gui/editors/notation/NotationSelectionPaster.cpp
@@ -75,14 +75,14 @@ void NotationSelectionPaster::handleLeftButtonPress(timeT,
Segment& segment = staff->getSegment();
PasteEventsCommand *command = new PasteEventsCommand
- (segment, m_tqparentView->getDocument()->getClipboard(), time,
+ (segment, m_parentView->getDocument()->getClipboard(), time,
PasteEventsCommand::Restricted);
if (!command->isPossible()) {
- m_tqparentView->slotStatusHelpMsg(i18n("Couldn't paste at this point"));
+ m_parentView->slotStatusHelpMsg(i18n("Couldn't paste at this point"));
} else {
- m_tqparentView->addCommandToHistory(command);
- m_tqparentView->slotStatusHelpMsg(i18n("Ready."));
+ m_parentView->addCommandToHistory(command);
+ m_parentView->slotStatusHelpMsg(i18n("Ready."));
}
}