diff options
Diffstat (limited to 'lib/widgets/propeditor/qeditlistbox.cpp')
-rw-r--r-- | lib/widgets/propeditor/qeditlistbox.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/widgets/propeditor/qeditlistbox.cpp b/lib/widgets/propeditor/qeditlistbox.cpp index ad3ab6c4..683a0931 100644 --- a/lib/widgets/propeditor/qeditlistbox.cpp +++ b/lib/widgets/propeditor/qeditlistbox.cpp @@ -195,14 +195,14 @@ void QEditListBox::moveItemUp() { if (!m_listBox->isEnabled()) { - qDebug("beep"); + tqDebug("beep"); return; } unsigned int selIndex = m_listBox->currentItem(); if (selIndex == 0) { - qDebug("beep"); + tqDebug("beep"); return; } @@ -218,14 +218,14 @@ void QEditListBox::moveItemDown() { if (!m_listBox->isEnabled()) { - qDebug("beep"); + tqDebug("beep"); return; } unsigned int selIndex = m_listBox->currentItem(); if (selIndex == m_listBox->count() - 1) { - qDebug("beep"); + tqDebug("beep"); return; } |