diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:18:49 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-03-01 13:18:49 -0600 |
commit | 1b904b0fa2fd5d3666ba86eaa21e27180fe99688 (patch) | |
tree | 9f50c562a87d79fc1240dc65ab2a9d6e9a94de1f /src | |
parent | 25c46269a29b5c161f2ec0503324790864afa9ab (diff) | |
download | kbfx-1b904b0fa2fd5d3666ba86eaa21e27180fe99688.tar.gz kbfx-1b904b0fa2fd5d3666ba86eaa21e27180fe99688.zip |
Rename additional global TQt functions
Diffstat (limited to 'src')
-rw-r--r-- | src/kbfxplasmacanvasgroup.cpp | 14 | ||||
-rw-r--r-- | src/kbfxplasmacanvasgroupview.cpp | 8 | ||||
-rw-r--r-- | src/kbfxplasmacanvasitem_events.cpp | 6 | ||||
-rw-r--r-- | src/kbfxplasmacanvasstack.cpp | 4 | ||||
-rw-r--r-- | src/kbfxplasmacanvasview.cpp | 10 |
5 files changed, 21 insertions, 21 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; } } diff --git a/src/kbfxplasmacanvasgroupview.cpp b/src/kbfxplasmacanvasgroupview.cpp index 006cd32..130019d 100644 --- a/src/kbfxplasmacanvasgroupview.cpp +++ b/src/kbfxplasmacanvasgroupview.cpp @@ -48,7 +48,7 @@ KbfxPlasmaCanvasGroupView::addGroup ( KbfxPlasmaCanvasGroup * gPtr ) { if ( gPtr == NULL ) { - qDebug + tqDebug ( "KbfxPlasmaCanvasGroupView.cpp:39:Null Pointer Passed to addGroup()" ); return; } @@ -60,7 +60,7 @@ KbfxPlasmaCanvasGroupView::addGroup ( KbfxPlasmaCanvasGroup * gPtr ) gPtr->move ( 0,m_height-gPtr->height() ); m_groupChain.append ( gPtr ); // gPtr->show(); -// qDebug("adding Groupy"); +// tqDebug("adding Groupy"); m_count++; connect ( gPtr, TQT_SIGNAL ( groupShade ( uint ) ), this, TQT_SLOT ( foldGroup ( uint ) ) ); @@ -150,7 +150,7 @@ KbfxPlasmaCanvasGroupView::show() /// unFoldGroup(i); m_groupChain.at ( i )->show(); - ///qDebug("Showing group %d",i); + ///tqDebug("Showing group %d",i); } } @@ -190,7 +190,7 @@ KbfxPlasmaCanvasGroupView::unFoldGroup ( uint e_id ) KbfxPlasmaCanvasGroup *_et = m_groupChain.at ( e_id ); if ( _et == NULL ) { - qDebug ( "OOps no such groups can't unfold" ); + tqDebug ( "OOps no such groups can't unfold" ); return; } diff --git a/src/kbfxplasmacanvasitem_events.cpp b/src/kbfxplasmacanvasitem_events.cpp index 1804ca7..8377dec 100644 --- a/src/kbfxplasmacanvasitem_events.cpp +++ b/src/kbfxplasmacanvasitem_events.cpp @@ -30,7 +30,7 @@ void KbfxPlasmaCanvasItem::mousePressEvent ( TQMouseEvent * e ) //TODO: //implement this class //emit clicked(); -//qDebug("Recive Mouse Press Event"); +//tqDebug("Recive Mouse Press Event"); } void @@ -44,14 +44,14 @@ KbfxPlasmaCanvasItem::mouseReleaseEvent ( TQMouseEvent * e ) void KbfxPlasmaCanvasItem::mouseMoveEvent ( TQMouseEvent * e ) { e=e; -//qDebug("Item revices Mouse Event"); +//tqDebug("Item revices Mouse Event"); } void KbfxPlasmaCanvasItem::enterEvent ( TQEvent * e ) { e=e; -//qDebug("Mouse Enters"); +//tqDebug("Mouse Enters"); } void diff --git a/src/kbfxplasmacanvasstack.cpp b/src/kbfxplasmacanvasstack.cpp index 164137b..6f7ae67 100644 --- a/src/kbfxplasmacanvasstack.cpp +++ b/src/kbfxplasmacanvasstack.cpp @@ -64,7 +64,7 @@ KbfxPlasmaCanvasStack::raise ( uint id ) KbfxPlasmaCanvasGroupView * _gvPtr = m_groupChain.at ( id ); if ( !_gvPtr ) - qDebug ( "Error item not in Stack" ); + tqDebug ( "Error item not in Stack" ); else { for ( uint i = 0; i < m_groupChain.count (); ++i ) @@ -97,7 +97,7 @@ KbfxPlasmaCanvasStack::addGroup ( KbfxPlasmaCanvasGroupView * gPtr ) { if ( gPtr == NULL ) { - qDebug + tqDebug ( "KbfxPlasmaCanvasStack.cpp:34:Null Pointer Passed to addGroup()" ); return; } diff --git a/src/kbfxplasmacanvasview.cpp b/src/kbfxplasmacanvasview.cpp index 10dde65..5fa4a62 100644 --- a/src/kbfxplasmacanvasview.cpp +++ b/src/kbfxplasmacanvasview.cpp @@ -68,7 +68,7 @@ KbfxPlasmaCanvasView::~KbfxPlasmaCanvasView () void KbfxPlasmaCanvasView::keyPressEvent ( TQKeyEvent * ke ) { - qDebug ( "TQCanvasView got Key events" ); + tqDebug ( "TQCanvasView got Key events" ); ke->ignore(); } @@ -79,7 +79,7 @@ KbfxPlasmaCanvasView::execFirst () // { // return; // } -qDebug("_____----------------------------------------"); +tqDebug("_____----------------------------------------"); if ( m_exeCandidate != 0 ) m_exeCandidate->exec (); } @@ -242,7 +242,7 @@ KbfxPlasmaCanvasView::startDrag () src = m_currentItem->source (); if ( src == 0 ) { - qDebug ( "null source" ); + tqDebug ( "null source" ); return; } TQStrList uriList; @@ -354,7 +354,7 @@ KbfxPlasmaCanvasView::handleLoadRequest ( KbfxSignal signal ) KbfxDataStack *_stack = m_dataStack[signal.name () ]; if ( _stack == 0 ) { - qDebug ( "Empty Stack" ); + tqDebug ( "Empty Stack" ); return; } @@ -492,7 +492,7 @@ KbfxPlasmaCanvasView::search_R ( const TQString name ) if ( appGroup == NULL ) { - qDebug ( "Null Search Group" ); + tqDebug ( "Null Search Group" ); continue; } |