summaryrefslogtreecommitdiffstats
path: root/lib/widgets/propeditor/qeditlistbox.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2012-03-01 13:37:05 -0600
committerTimothy Pearson <[email protected]>2012-03-01 13:37:05 -0600
commit313fa28dc5e72d738faec49ff14fa5aed4a7fcd4 (patch)
treedf0fec64d296b72881b384fcc7dd4541c84d2d88 /lib/widgets/propeditor/qeditlistbox.cpp
parent1040d772e2544a98af4bc49c94b47cea28111559 (diff)
downloadtdevelop-313fa28dc5e72d738faec49ff14fa5aed4a7fcd4.tar.gz
tdevelop-313fa28dc5e72d738faec49ff14fa5aed4a7fcd4.zip
Rename additional global TQt functions
Diffstat (limited to 'lib/widgets/propeditor/qeditlistbox.cpp')
-rw-r--r--lib/widgets/propeditor/qeditlistbox.cpp8
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;
}