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/kbfxspinxmenu.cpp | |
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/kbfxspinxmenu.cpp')
-rw-r--r-- | src/kbfxspinxmenu.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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 ); |