diff options
Diffstat (limited to 'kbfxlib/data/kbfxdatasource.cpp')
| -rw-r--r-- | kbfxlib/data/kbfxdatasource.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/kbfxlib/data/kbfxdatasource.cpp b/kbfxlib/data/kbfxdatasource.cpp index 8a44478..91d13c2 100644 --- a/kbfxlib/data/kbfxdatasource.cpp +++ b/kbfxlib/data/kbfxdatasource.cpp @@ -38,15 +38,15 @@ KbfxDataSource::~KbfxDataSource() } bool -KbfxDataSource::lookup ( QString str ) +KbfxDataSource::lookup ( TQString str ) { if ( str.isNull() ) return false; - QString _searchStr = m_text+m_comment+m_description+m_keyWords; + TQString _searchStr = m_text+m_comment+m_description+m_keyWords; - if ( _searchStr.contains ( str,false ) > 0 ) + if ( _searchStr.tqcontains ( str,false ) > 0 ) return true; return false; @@ -74,11 +74,11 @@ KbfxDataSource::exec() if ( type() == KbfxDataSource::DESKTOP ) { - QCString dcop; + TQCString dcop; int pid; - QString m_error; + TQString m_error; KApplication::startServiceByDesktopPath ( desktopFile(), - QString::null, &m_error,&dcop,&pid,"",true ); + TQString(), &m_error,&dcop,&pid,"",true ); } else |
