diff options
Diffstat (limited to 'src/kbfxplasmacanvasitem.cpp')
-rw-r--r-- | src/kbfxplasmacanvasitem.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
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; |