From 4b3c5dd929ea78ca3b6f656a63d70b10d2f43885 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 26 Nov 2011 17:42:48 -0600 Subject: Fix FTBFS --- src/commands/edit/ClearTriggersCommand.h | 2 +- src/commands/edit/EventQuantizeCommand.cpp | 2 +- src/commands/edit/SetTriggerCommand.h | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src/commands/edit') diff --git a/src/commands/edit/ClearTriggersCommand.h b/src/commands/edit/ClearTriggersCommand.h index 5372f93..0abbdb7 100644 --- a/src/commands/edit/ClearTriggersCommand.h +++ b/src/commands/edit/ClearTriggersCommand.h @@ -44,7 +44,7 @@ class ClearTriggersCommand : public BasicSelectionCommand public: ClearTriggersCommand(EventSelection &selection, TQString name = 0) : - BasicSelectionCommand(name ? name : getGlobalName(), selection, true), + BasicSelectionCommand(!name.isNull() ? name : getGlobalName(), selection, true), m_selection(&selection) { } diff --git a/src/commands/edit/EventQuantizeCommand.cpp b/src/commands/edit/EventQuantizeCommand.cpp index de033ef..4be8163 100644 --- a/src/commands/edit/EventQuantizeCommand.cpp +++ b/src/commands/edit/EventQuantizeCommand.cpp @@ -132,7 +132,7 @@ EventQuantizeCommand::modifySegment() bool makeviable = false; bool decounterpoint = false; - if (m_configGroup) { + if (!m_configGroup.isNull()) { //!!! need way to decide whether to do these even if no config group (i.e. through args to the command) KConfig *config = kapp->config(); config->setGroup(m_configGroup); diff --git a/src/commands/edit/SetTriggerCommand.h b/src/commands/edit/SetTriggerCommand.h index 898bf0b..a87eab8 100644 --- a/src/commands/edit/SetTriggerCommand.h +++ b/src/commands/edit/SetTriggerCommand.h @@ -51,7 +51,7 @@ public: std::string timeAdjust, Mark mark, TQString name = 0) : - BasicSelectionCommand(name ? name : getGlobalName(), selection, true), + BasicSelectionCommand(!name.isNull() ? name : getGlobalName(), selection, true), m_selection(&selection), m_triggerSegmentId(triggerSegmentId), m_notesOnly(notesOnly), -- cgit v1.2.1