summaryrefslogtreecommitdiffstats
path: root/parts/doxygen/config.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'parts/doxygen/config.cpp')
-rw-r--r--parts/doxygen/config.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/parts/doxygen/config.cpp b/parts/doxygen/config.cpp
index 658f5ae5..727020bf 100644
--- a/parts/doxygen/config.cpp
+++ b/parts/doxygen/config.cpp
@@ -708,7 +708,7 @@ void ConfigBool::convertStrToVal()
TQCString &Config::getString(const char *fileName,int num,const char *name) const
{
- ConfigOption *opt = m_dict->tqfind(name);
+ ConfigOption *opt = m_dict->find(name);
if (opt==0)
{
config_err("%s<%d>: Internal error: Requested unknown option %s!\n",fileName,num,name);
@@ -724,7 +724,7 @@ TQCString &Config::getString(const char *fileName,int num,const char *name) cons
TQStrList &Config::getList(const char *fileName,int num,const char *name) const
{
- ConfigOption *opt = m_dict->tqfind(name);
+ ConfigOption *opt = m_dict->find(name);
if (opt==0)
{
config_err("%s<%d>: Internal error: Requested unknown option %s!\n",fileName,num,name);
@@ -740,7 +740,7 @@ TQStrList &Config::getList(const char *fileName,int num,const char *name) const
TQCString &Config::getEnum(const char *fileName,int num,const char *name) const
{
- ConfigOption *opt = m_dict->tqfind(name);
+ ConfigOption *opt = m_dict->find(name);
if (opt==0)
{
config_err("%s<%d>: Internal error: Requested unknown option %s!\n",fileName,num,name);
@@ -756,7 +756,7 @@ TQCString &Config::getEnum(const char *fileName,int num,const char *name) const
int &Config::getInt(const char *fileName,int num,const char *name) const
{
- ConfigOption *opt = m_dict->tqfind(name);
+ ConfigOption *opt = m_dict->find(name);
if (opt==0)
{
config_err("%s<%d>: Internal error: Requested unknown option %s!\n",fileName,num,name);
@@ -772,7 +772,7 @@ int &Config::getInt(const char *fileName,int num,const char *name) const
bool &Config::getBool(const char *fileName,int num,const char *name) const
{
- ConfigOption *opt = m_dict->tqfind(name);
+ ConfigOption *opt = m_dict->find(name);
if (opt==0)
{
config_err("%s<%d>: Internal error: Requested unknown option %s!\n",fileName,num,name);
@@ -2493,7 +2493,7 @@ static void substEnvVarsInStrList(TQStrList &sl)
{
TQCString result(s);
// an argument with quotes will have an extra space at the end, so wasQuoted will be TRUE.
- bool wasQuoted = (result.tqfind(' ')!=-1) || (result.tqfind('\t')!=-1);
+ bool wasQuoted = (result.find(' ')!=-1) || (result.find('\t')!=-1);
// here we strip the quote again
substEnvVarsInString(result);
@@ -2654,15 +2654,15 @@ void Config::check()
}
else
{
- if (warnFormat.tqfind("$file")==-1)
+ if (warnFormat.find("$file")==-1)
{
config_err("Warning: warning format does not contain a $file tag!\n");
}
- if (warnFormat.tqfind("$line")==-1)
+ if (warnFormat.find("$line")==-1)
{
config_err("Warning: warning format does not contain a $line tag!\n");
}
- if (warnFormat.tqfind("$text")==-1)
+ if (warnFormat.find("$text")==-1)
{
config_err("Warning: warning format foes not contain a $text tag!\n");
}
@@ -2774,7 +2774,7 @@ void Config::check()
TQRegExp re2("[a-z_A-Z][a-z_A-Z0-9]*{[0-9]*}[ \t]*="); // alias with argument
TQCString alias=s;
alias=alias.stripWhiteSpace();
- if (alias.tqfind(re1)!=0 && alias.tqfind(re2)!=0)
+ if (alias.find(re1)!=0 && alias.find(re2)!=0)
{
config_err("Illegal alias format `%s'. Use \"name=value\" or \"name(n)=value\", where n is the number of arguments\n",
alias.data());
@@ -3042,7 +3042,7 @@ void Config::check()
annotationFromBrief.append("is");
annotationFromBrief.append("provides");
annotationFromBrief.append("specifies");
- annotationFromBrief.append("tqcontains");
+ annotationFromBrief.append("contains");
annotationFromBrief.append("represents");
annotationFromBrief.append("a");
annotationFromBrief.append("an");
@@ -3306,7 +3306,7 @@ void Config::create()
"used as the annotated text. Otherwise, the brief description is used as-is. \n"
"If left blank, the following values are used (\"$name\" is automatically \n"
"replaced with the name of the entity): \"The $name class\" \"The $name widget\" \n"
- "\"The $name file\" \"is\" \"provides\" \"specifies\" \"tqcontains\" \n"
+ "\"The $name file\" \"is\" \"provides\" \"specifies\" \"contains\" \n"
"\"represents\" \"a\" \"an\" \"the\"\n"
);
cb = addBool(
@@ -4132,7 +4132,7 @@ void Config::create()
"To create a documentation set, doxygen will generate a Makefile in the \n"
"HTML output directory. Running make will produce the docset in that \n"
"directory and running \"make install\" will install the docset in \n"
- "~/Library/Developer/Shared/Documentation/DocSets so that Xcode will tqfind \n"
+ "~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find \n"
"it at startup. \n"
"See http://developer.apple.com/tools/creatingdocsetswithdoxygen.html "
"for more information. \n",