This commit is contained in:
parent
bab4f61bb2
commit
85c7456546
|
@ -40,7 +40,7 @@ class Directive:
|
||||||
#
|
#
|
||||||
# The CppcheckData.tokenlist is a list of Token items
|
# The CppcheckData.tokenlist is a list of Token items
|
||||||
#
|
#
|
||||||
# C++ class: http://cppcheck.sourceforge.net/devinfo/doxyoutput/classToken.html
|
# C++ class: http://cppcheck.net/devinfo/doxyoutput/classToken.html
|
||||||
#
|
#
|
||||||
# To iterate through all tokens use such code:
|
# To iterate through all tokens use such code:
|
||||||
# @code
|
# @code
|
||||||
|
@ -257,7 +257,7 @@ class Token:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
## Scope. Information about global scope, function scopes, class scopes, inner scopes, etc.
|
## Scope. Information about global scope, function scopes, class scopes, inner scopes, etc.
|
||||||
# C++ class: http://cppcheck.sourceforge.net/devinfo/doxyoutput/classScope.html
|
# C++ class: http://cppcheck.net/devinfo/doxyoutput/classScope.html
|
||||||
|
|
||||||
|
|
||||||
class Scope:
|
class Scope:
|
||||||
|
@ -294,7 +294,7 @@ class Scope:
|
||||||
|
|
||||||
## Information about a function
|
## Information about a function
|
||||||
# C++ class:
|
# C++ class:
|
||||||
# http://cppcheck.sourceforge.net/devinfo/doxyoutput/classFunction.html
|
# http://cppcheck.net/devinfo/doxyoutput/classFunction.html
|
||||||
|
|
||||||
|
|
||||||
class Function:
|
class Function:
|
||||||
|
@ -321,7 +321,7 @@ class Function:
|
||||||
|
|
||||||
## Information about a variable
|
## Information about a variable
|
||||||
# C++ class:
|
# C++ class:
|
||||||
# http://cppcheck.sourceforge.net/devinfo/doxyoutput/classVariable.html
|
# http://cppcheck.net/devinfo/doxyoutput/classVariable.html
|
||||||
|
|
||||||
|
|
||||||
class Variable:
|
class Variable:
|
||||||
|
@ -379,7 +379,7 @@ class ValueFlow:
|
||||||
# Each possible value has a ValueFlow::Value item.
|
# Each possible value has a ValueFlow::Value item.
|
||||||
# Each ValueFlow::Value either has a intvalue or tokvalue
|
# Each ValueFlow::Value either has a intvalue or tokvalue
|
||||||
# C++ class:
|
# C++ class:
|
||||||
# http://cppcheck.sourceforge.net/devinfo/doxyoutput/classValueFlow_1_1Value.html
|
# http://cppcheck.net/devinfo/doxyoutput/classValueFlow_1_1Value.html
|
||||||
|
|
||||||
class Value:
|
class Value:
|
||||||
## integer value
|
## integer value
|
||||||
|
|
|
@ -981,5 +981,5 @@ void CmdLineParser::PrintHelp()
|
||||||
" cppcheck -I inc1/ -I inc2/ f.cpp\n"
|
" cppcheck -I inc1/ -I inc2/ f.cpp\n"
|
||||||
"\n"
|
"\n"
|
||||||
"For more information:\n"
|
"For more information:\n"
|
||||||
" http://cppcheck.sourceforge.net/manual.pdf\n";
|
" http://cppcheck.net/manual.pdf\n";
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,7 +31,7 @@ AboutDialog::AboutDialog(const QString &version, const QString &extraVersion, QW
|
||||||
fmtVersion += " (" + extraVersion + ")";
|
fmtVersion += " (" + extraVersion + ")";
|
||||||
}
|
}
|
||||||
mUI.mVersion->setText(mUI.mVersion->text().arg(fmtVersion));
|
mUI.mVersion->setText(mUI.mVersion->text().arg(fmtVersion));
|
||||||
QString url = "<a href=\"http://cppcheck.sourceforge.net/\">http://cppcheck.sourceforge.net/</a>";
|
QString url = "<a href=\"http://cppcheck.net/\">http://cppcheck.net/</a>";
|
||||||
mUI.mHomepage->setText(mUI.mHomepage->text().arg(url));
|
mUI.mHomepage->setText(mUI.mHomepage->text().arg(url));
|
||||||
connect(mUI.mButtons, SIGNAL(accepted()), this, SLOT(accept()));
|
connect(mUI.mButtons, SIGNAL(accepted()), this, SLOT(accept()));
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,7 +46,7 @@
|
||||||
#include "showtypes.h"
|
#include "showtypes.h"
|
||||||
#include "librarydialog.h"
|
#include "librarydialog.h"
|
||||||
|
|
||||||
static const QString OnlineHelpURL("http://cppcheck.sourceforge.net/manual.html");
|
static const QString OnlineHelpURL("http://cppcheck.net/manual.html");
|
||||||
|
|
||||||
MainWindow::MainWindow(TranslationHandler* th, QSettings* settings) :
|
MainWindow::MainWindow(TranslationHandler* th, QSettings* settings) :
|
||||||
mSettings(settings),
|
mSettings(settings),
|
||||||
|
|
|
@ -247,7 +247,7 @@ HTML_FOOTER = """
|
||||||
<p>
|
<p>
|
||||||
Cppcheck %s - a tool for static C/C++ code analysis</br>
|
Cppcheck %s - a tool for static C/C++ code analysis</br>
|
||||||
</br>
|
</br>
|
||||||
Internet: <a href="http://cppcheck.sourceforge.net">http://cppcheck.sourceforge.net</a></br>
|
Internet: <a href="http://cppcheck.net">http://cppcheck.net</a></br>
|
||||||
IRC: <a href="irc://irc.freenode.net/cppcheck">irc://irc.freenode.net/cppcheck</a></br>
|
IRC: <a href="irc://irc.freenode.net/cppcheck">irc://irc.freenode.net/cppcheck</a></br>
|
||||||
<p>
|
<p>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue