summaryrefslogtreecommitdiffstats
path: root/src/kile/kilehelp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kile/kilehelp.cpp')
-rw-r--r--src/kile/kilehelp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/kile/kilehelp.cpp b/src/kile/kilehelp.cpp
index 3e89b34..127fbff 100644
--- a/src/kile/kilehelp.cpp
+++ b/src/kile/kilehelp.cpp
@@ -270,7 +270,7 @@ namespace KileHelp
{
TQString word = getKeyword(view);
KILE_DEBUG() << "keyword: " << word << endl;
- if ( !word.isNull() && m_dictHelpTex.tqcontains(word) )
+ if ( !word.isNull() && m_dictHelpTex.contains(word) )
{
KILE_DEBUG() << "about to show help for " << word << " (section " << m_dictHelpTex[word] << " )" << endl;
showHelpFile( m_texdocPath + m_texReference + m_dictHelpTex[word] );
@@ -286,8 +286,8 @@ namespace KileHelp
if ( ! kilehelp.isEmpty() )
{
TQString word = getKeyword(view);
- KILE_DEBUG() << "word = " << word << " " << m_dictHelpKile.tqcontains(word) << endl;
- if ( !word.isNull() && m_dictHelpKile.tqcontains(word) )
+ KILE_DEBUG() << "word = " << word << " " << m_dictHelpKile.contains(word) << endl;
+ if ( !word.isNull() && m_dictHelpKile.contains(word) )
{
showHelpFile( kilehelp + '#' + m_dictHelpKile[word] );
}