summaryrefslogtreecommitdiffstats
path: root/src/kbfxplasmacanvasgroup.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:18:49 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-03-01 13:18:49 -0600
commit1b904b0fa2fd5d3666ba86eaa21e27180fe99688 (patch)
tree9f50c562a87d79fc1240dc65ab2a9d6e9a94de1f /src/kbfxplasmacanvasgroup.cpp
parent25c46269a29b5c161f2ec0503324790864afa9ab (diff)
downloadkbfx-1b904b0fa2fd5d3666ba86eaa21e27180fe99688.tar.gz
kbfx-1b904b0fa2fd5d3666ba86eaa21e27180fe99688.zip
Rename additional global TQt functions
Diffstat (limited to 'src/kbfxplasmacanvasgroup.cpp')
-rw-r--r--src/kbfxplasmacanvasgroup.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/kbfxplasmacanvasgroup.cpp b/src/kbfxplasmacanvasgroup.cpp
index fe48427..30cfa43 100644
--- a/src/kbfxplasmacanvasgroup.cpp
+++ b/src/kbfxplasmacanvasgroup.cpp
@@ -36,14 +36,14 @@ KbfxPlasmaCanvasGroup::~KbfxPlasmaCanvasGroup ()
{
for ( ItemListIter it ( m_itemList ); *it; ++it )
{
-//qDebug("Trying to delete Item from Rgoup================");
+//tqDebug("Trying to delete Item from Rgoup================");
// if(*it)
// delete (*it);
// itemListMap ().remove (*it);
if ( ( *it ) != 0 )
if ( deleteItem ( ( *it ) ) == false )
{
- qDebug ( "Deleting failed" );
+ tqDebug ( "Deleting failed" );
}
}
@@ -62,7 +62,7 @@ KbfxPlasmaCanvasGroup::ItemListMap & KbfxPlasmaCanvasGroup::itemListMap ()
bool
KbfxPlasmaCanvasGroup::deleteItem ( KbfxPlasmaCanvasAbstractItem * it )
{
-//qDebug("Removing Item from Group");
+//tqDebug("Removing Item from Group");
// itemListMap ().remove (it);
//delete it;
//return true;
@@ -79,7 +79,7 @@ KbfxPlasmaCanvasGroup::deleteItem ( KbfxPlasmaCanvasAbstractItem * it )
}
else
{
- qDebug ( "deleting Item failed" );
+ tqDebug ( "deleting Item failed" );
return false;
}
}
@@ -93,20 +93,20 @@ KbfxPlasmaCanvasGroup::addItem ( KbfxPlasmaCanvasAbstractItem * it )
if ( it->name().isEmpty() )
{
- qDebug ( "Adding Failed bcos Name Missing" );
+ tqDebug ( "Adding Failed bcos Name Missing" );
return false;
}
ItemListMap::ConstIterator itn = itemListMap ().find ( it );
if ( itn != itemListMap ().end () )
{
- qDebug ( "Adding Failed Due to Item not end" );
+ tqDebug ( "Adding Failed Due to Item not end" );
return false;
}
for ( ItemListIter itr ( m_itemList ); *itr; ++itr )
{
if ( ( *itr )->lookup ( it->name() ) == true )
{
- qDebug ( "Adding Failed Due to Item already exisits" );
+ tqDebug ( "Adding Failed Due to Item already exisits" );
return false;
}
}