summaryrefslogtreecommitdiffstats
path: root/src/kile/kilestdtools.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/kile/kilestdtools.cpp')
-rw-r--r--src/kile/kilestdtools.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/kile/kilestdtools.cpp b/src/kile/kilestdtools.cpp
index 5dfa9e6..c4c9429 100644
--- a/src/kile/kilestdtools.cpp
+++ b/src/kile/kilestdtools.cpp
@@ -111,7 +111,7 @@ namespace KileTool
if ( docinfo )
{
const TQStringList *pckgs = manager()->info()->allPackages();
- if ( pckgs->tqcontains("makeidx") )
+ if ( pckgs->contains("makeidx") )
return needsUpdate ( baseDir() + '/' + S() + ".ind", manager()->info()->lastModifiedFile(docinfo) );
}
@@ -125,13 +125,13 @@ namespace KileTool
{
const TQStringList *pckgs = manager()->info()->allPackages();
- if ( pckgs->tqcontains("asymptote") )
+ if ( pckgs->contains("asymptote") )
{
static TQRegExp msg("File " + TQRegExp::escape(S()) + "_?\\d+_?.(?:eps|pdf|tex) does not exist");
int sz = manager()->info()->outputInfo()->size();
for (int i = 0; i < sz; ++i )
{
- if( (*manager()->info()->outputInfo())[i].message().tqcontains(msg) )
+ if( (*manager()->info()->outputInfo())[i].message().contains(msg) )
return true;
}
}
@@ -192,7 +192,7 @@ namespace KileTool
for (int i = 0; i < sz; ++i )
{
if ( (*manager()->info()->outputInfo())[i].type() == LatexOutputInfo::itmWarning
- && (*manager()->info()->outputInfo())[i].message().tqcontains("Rerun") )
+ && (*manager()->info()->outputInfo())[i].message().contains("Rerun") )
{
reRan = true;
break;
@@ -382,7 +382,7 @@ namespace KileTool
if ( !read1 && !read2 )
{
- sendMessage(Error, i18n("Unable to tqfind %1 or %2; if you are trying to view some other HTML file, go to Settings->Configure Kile->Tools->ViewHTML->Advanced.").tqarg(file1.absFilePath()).tqarg(file2.absFilePath()));
+ sendMessage(Error, i18n("Unable to find %1 or %2; if you are trying to view some other HTML file, go to Settings->Configure Kile->Tools->ViewHTML->Advanced.").tqarg(file1.absFilePath()).tqarg(file2.absFilePath()));
return false;
}