diff options
author | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
---|---|---|
committer | tpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2011-08-10 06:08:18 +0000 |
commit | 055401d5dbcb7a509b9d6a6414ba3fc55a23eb82 (patch) | |
tree | 00c2014321c12930c673079eb5d736c80a85be45 /src | |
parent | ba9755cbdc76d556757b1facb56e1c453f67025b (diff) | |
download | kbfx-055401d5dbcb7a509b9d6a6414ba3fc55a23eb82.tar.gz kbfx-055401d5dbcb7a509b9d6a6414ba3fc55a23eb82.zip |
rename the following methods:
tqfind find
tqreplace replace
tqcontains contains
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kbfx@1246075 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'src')
-rw-r--r-- | src/kbfxbutton.cpp | 12 | ||||
-rw-r--r-- | src/kbfxplasmacanvasgroup.cpp | 4 | ||||
-rw-r--r-- | src/kbfxplasmacanvasgroupview.cpp | 2 | ||||
-rw-r--r-- | src/kbfxplasmacanvasgroupview.h | 2 | ||||
-rw-r--r-- | src/kbfxplasmacanvasitem.cpp | 6 | ||||
-rw-r--r-- | src/kbfxplasmacanvasstack.cpp | 4 | ||||
-rw-r--r-- | src/kbfxplasmacanvasstack.h | 4 | ||||
-rw-r--r-- | src/kbfxplasmacanvasview.cpp | 6 | ||||
-rw-r--r-- | src/kbfxplasmaindexview.cpp | 2 | ||||
-rw-r--r-- | src/kbfxspinxmenu.cpp | 6 |
10 files changed, 24 insertions, 24 deletions
diff --git a/src/kbfxbutton.cpp b/src/kbfxbutton.cpp index 0fe018c..4815a6b 100644 --- a/src/kbfxbutton.cpp +++ b/src/kbfxbutton.cpp @@ -105,7 +105,7 @@ TQCString KbfxButton::findPanel() it != objects.end(); ++it) { - if ( (*it).tqcontains ( "Panel" ) > 0 ) + if ( (*it).contains ( "Panel" ) > 0 ) { DCOPRef _dcop_obj ( "kicker", (*it) ); TQStringList _dcop_obj_applets =_dcop_obj.call ( "listApplets()" ); @@ -114,7 +114,7 @@ TQCString KbfxButton::findPanel() _it != _dcop_obj_applets.end(); _it++ ) { - if ( ( *_it ).tqcontains ( "kbfx" ) ) + if ( ( *_it ).contains ( "kbfx" ) ) { m_AppletPanel = (*it); break; @@ -308,7 +308,7 @@ void KbfxButton::selfDeleter() for ( it = returnTQStringList.begin();it != returnTQStringList.end();it++ ) { - if ( ( *it ).tqcontains ( "kbfx" ) ) + if ( ( *it ).contains ( "kbfx" ) ) { break; } @@ -371,17 +371,17 @@ void KbfxButton::dropEvent ( TQDropEvent * e ) { _tmp = ( *it ); kdDebug() << "KBFX button dropped file: " << _tmp << endl; - if ( _tmp.tqcontains ( "hover", FALSE ) > 0 ) + if ( _tmp.contains ( "hover", FALSE ) > 0 ) { _hover = _tmp; _hover_pix = TQImage ( _tmp ); } - if ( _tmp.tqcontains ( "normal", FALSE ) > 0 ) + if ( _tmp.contains ( "normal", FALSE ) > 0 ) { _normal = _tmp; _normal_pix = TQImage ( _tmp ); } - if ( _tmp.tqcontains ( "pressed", FALSE ) > 0 ) + if ( _tmp.contains ( "pressed", FALSE ) > 0 ) { _pressed = _tmp; _pressed_pix = TQImage ( _tmp ); diff --git a/src/kbfxplasmacanvasgroup.cpp b/src/kbfxplasmacanvasgroup.cpp index 371e622..94e9389 100644 --- a/src/kbfxplasmacanvasgroup.cpp +++ b/src/kbfxplasmacanvasgroup.cpp @@ -96,7 +96,7 @@ KbfxPlasmaCanvasGroup::addItem ( KbfxPlasmaCanvasAbstractItem * it ) qDebug ( "Adding Failed bcos Name Missing" ); return false; } - ItemListMap::ConstIterator itn = itemListMap ().tqfind ( it ); + ItemListMap::ConstIterator itn = itemListMap ().find ( it ); if ( itn != itemListMap ().end () ) { qDebug ( "Adding Failed Due to Item not end" ); @@ -308,7 +308,7 @@ KbfxPlasmaCanvasGroup::width () KbfxPlasmaCanvasGroup * KbfxPlasmaCanvasGroup::groupContaining ( KbfxPlasmaCanvasAbstractItem * item ) { - ItemListMap::ConstIterator it = itemListMap ().tqfind ( item ); + ItemListMap::ConstIterator it = itemListMap ().find ( item ); if ( it == itemListMap ().end () ) return 0; else diff --git a/src/kbfxplasmacanvasgroupview.cpp b/src/kbfxplasmacanvasgroupview.cpp index 0f84605..006cd32 100644 --- a/src/kbfxplasmacanvasgroupview.cpp +++ b/src/kbfxplasmacanvasgroupview.cpp @@ -74,7 +74,7 @@ KbfxPlasmaCanvasGroupView::addGroup ( KbfxPlasmaCanvasGroup * gPtr ) } KbfxPlasmaCanvasGroupView * -KbfxPlasmaCanvasGroupView::tqcontains ( KbfxPlasmaCanvasGroup * ) +KbfxPlasmaCanvasGroupView::contains ( KbfxPlasmaCanvasGroup * ) { //maybe I don't need this return 0; diff --git a/src/kbfxplasmacanvasgroupview.h b/src/kbfxplasmacanvasgroupview.h index 779d813..f373887 100644 --- a/src/kbfxplasmacanvasgroupview.h +++ b/src/kbfxplasmacanvasgroupview.h @@ -45,7 +45,7 @@ class KbfxPlasmaCanvasGroupView:public TQObject void addGroup ( KbfxPlasmaCanvasGroup* ); void deleteGroup ( KbfxPlasmaCanvasGroup* ); - KbfxPlasmaCanvasGroupView* tqcontains ( KbfxPlasmaCanvasGroup* ); + KbfxPlasmaCanvasGroupView* contains ( KbfxPlasmaCanvasGroup* ); virtual int rtti() {return 1006;} void predend ( KbfxPlasmaCanvasGroup* ); void append ( KbfxPlasmaCanvasGroup * ); diff --git a/src/kbfxplasmacanvasitem.cpp b/src/kbfxplasmacanvasitem.cpp index 98173d2..819222a 100644 --- a/src/kbfxplasmacanvasitem.cpp +++ b/src/kbfxplasmacanvasitem.cpp @@ -97,11 +97,11 @@ KbfxPlasmaCanvasItem::lookup ( TQString str ) if ( m_type == SEPARATOR || m_type == INDEX ) return false; - if ( m_labelText.tqcontains ( str,false ) > 0 ) + if ( m_labelText.contains ( str,false ) > 0 ) return true; - if ( m_commentText.tqcontains ( str,false ) > 0 ) + if ( m_commentText.contains ( str,false ) > 0 ) return true; - if ( m_exec.tqcontains ( str,false ) >0 ) + if ( m_exec.contains ( str,false ) >0 ) return true; diff --git a/src/kbfxplasmacanvasstack.cpp b/src/kbfxplasmacanvasstack.cpp index 4ce38cb..164137b 100644 --- a/src/kbfxplasmacanvasstack.cpp +++ b/src/kbfxplasmacanvasstack.cpp @@ -81,10 +81,10 @@ KbfxPlasmaCanvasStack::raise ( uint id ) bool -KbfxPlasmaCanvasStack::tqcontains ( TQString name ) +KbfxPlasmaCanvasStack::contains ( TQString name ) { //FIXME:Depricated Data Structure Needs fixing - if ( m_dict.tqcontains ( name ) == true ) + if ( m_dict.contains ( name ) == true ) return true; else return false; diff --git a/src/kbfxplasmacanvasstack.h b/src/kbfxplasmacanvasstack.h index 386c9b5..7c38fa2 100644 --- a/src/kbfxplasmacanvasstack.h +++ b/src/kbfxplasmacanvasstack.h @@ -48,7 +48,7 @@ class KbfxPlasmaCanvasStack:public TQObject virtual ~KbfxPlasmaCanvasStack(); void addGroup ( KbfxPlasmaCanvasGroupView* ); void deleteGroup ( KbfxPlasmaCanvasGroupView* ); - KbfxPlasmaCanvasStack* tqcontains ( KbfxPlasmaCanvasGroupView* ); + KbfxPlasmaCanvasStack* contains ( KbfxPlasmaCanvasGroupView* ); TQString getItemName ( int ); virtual int rtti() {return 1006;} void predend ( KbfxPlasmaCanvasGroupView* ); @@ -66,7 +66,7 @@ class KbfxPlasmaCanvasStack:public TQObject } TQString name() {return m_name;} void setName ( TQString name ) { m_name = name;} - bool tqcontains ( TQString ); + bool contains ( TQString ); KbfxPlasmaCanvasGroupView * activeViewByName ( TQString name ); public slots: void raise ( uint id ); diff --git a/src/kbfxplasmacanvasview.cpp b/src/kbfxplasmacanvasview.cpp index b1943db..1484f9a 100644 --- a/src/kbfxplasmacanvasview.cpp +++ b/src/kbfxplasmacanvasview.cpp @@ -376,7 +376,7 @@ KbfxPlasmaCanvasView::handleLoadRequest ( KbfxSignal signal ) ( *it )->hide (); } - if ( m_appletMap[signal.name () ]->tqcontains ( _activateGroup ) != true ) + if ( m_appletMap[signal.name () ]->contains ( _activateGroup ) != true ) { loadGroup ( _dataList, gview ); m_currentView = gview; @@ -562,7 +562,7 @@ KbfxPlasmaCanvasView::search ( const TQString & str ) void KbfxPlasmaCanvasView::addStack ( KbfxPlasmaCanvasStack * stak, TQString name ) { - if ( m_appletMap.tqcontains ( name ) ) + if ( m_appletMap.contains ( name ) ) { return; } @@ -572,7 +572,7 @@ KbfxPlasmaCanvasView::addStack ( KbfxPlasmaCanvasStack * stak, TQString name ) void KbfxPlasmaCanvasView::addStack ( KbfxDataStack * stak, TQString name ) { - if ( m_dataStack.tqcontains ( name ) ) + if ( m_dataStack.contains ( name ) ) { return; } diff --git a/src/kbfxplasmaindexview.cpp b/src/kbfxplasmaindexview.cpp index d7e80e1..68bee8f 100644 --- a/src/kbfxplasmaindexview.cpp +++ b/src/kbfxplasmaindexview.cpp @@ -271,7 +271,7 @@ KbfxPlasmaIndexView::setKbfxCanvas ( TQCanvas * cnv ) void KbfxPlasmaIndexView::loadPlugin ( TQString name, KbfxPlasmaCanvasView * view ) { - if ( m_pluginList.tqcontains ( name ) <= 0 ) + if ( m_pluginList.contains ( name ) <= 0 ) { KbfxPlasmaPluginLoader *m_loader = new KbfxPlasmaPluginLoader (); KbfxDataStack *m_stack_R = m_loader->getView ( name ); diff --git a/src/kbfxspinxmenu.cpp b/src/kbfxspinxmenu.cpp index ed9924d..6f1ab9a 100644 --- a/src/kbfxspinxmenu.cpp +++ b/src/kbfxspinxmenu.cpp @@ -71,7 +71,7 @@ KbfxSpinxMenuWidget::init() m_searchTag->move ( ConfigInit ().m_searchBox_x, ConfigInit ().m_searchBox_y ); - TQPixmap m_searchPixmap = ( *KbfxPlasmaPixmapProvider::pixmap ( "tqfind" ) ); + TQPixmap m_searchPixmap = ( *KbfxPlasmaPixmapProvider::pixmap ( "find" ) ); m_searchTag->setPixmap ( m_searchPixmap ); @@ -320,7 +320,7 @@ KbfxSpinxMenuWidget::loadPluginLeft ( TQString name ) if (name == NULL) { return; } - if ( m_loadedListLeft.tqcontains ( name ) <= 0 ) + if ( m_loadedListLeft.contains ( name ) <= 0 ) { m_loader = new KbfxPlasmaPluginLoader (); m_stack_R = m_loader->getView ( name ); @@ -344,7 +344,7 @@ KbfxSpinxMenuWidget::loadPluginLeft ( TQString name ) void KbfxSpinxMenuWidget::loadPluginRight ( TQString name ) { -if ( m_loadedListRight.tqcontains ( name ) <= 0 ) +if ( m_loadedListRight.contains ( name ) <= 0 ) { m_loader = new KbfxPlasmaPluginLoader (); m_stack_R = m_loader->getView ( name ); |