Daniel Marjamäki 2016-06-05 18:17:47 +02:00
parent bab4f61bb2
commit 85c7456546
5 changed files with 9 additions and 9 deletions

View File

@ -40,7 +40,7 @@ class Directive:
#
# 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:
# @code
@ -257,7 +257,7 @@ class Token:
return None
## 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:
@ -294,7 +294,7 @@ class Scope:
## Information about a function
# C++ class:
# http://cppcheck.sourceforge.net/devinfo/doxyoutput/classFunction.html
# http://cppcheck.net/devinfo/doxyoutput/classFunction.html
class Function:
@ -321,7 +321,7 @@ class Function:
## Information about a variable
# C++ class:
# http://cppcheck.sourceforge.net/devinfo/doxyoutput/classVariable.html
# http://cppcheck.net/devinfo/doxyoutput/classVariable.html
class Variable:
@ -379,7 +379,7 @@ class ValueFlow:
# Each possible value has a ValueFlow::Value item.
# Each ValueFlow::Value either has a intvalue or tokvalue
# C++ class:
# http://cppcheck.sourceforge.net/devinfo/doxyoutput/classValueFlow_1_1Value.html
# http://cppcheck.net/devinfo/doxyoutput/classValueFlow_1_1Value.html
class Value:
## integer value

View File

@ -981,5 +981,5 @@ void CmdLineParser::PrintHelp()
" cppcheck -I inc1/ -I inc2/ f.cpp\n"
"\n"
"For more information:\n"
" http://cppcheck.sourceforge.net/manual.pdf\n";
" http://cppcheck.net/manual.pdf\n";
}

View File

@ -31,7 +31,7 @@ AboutDialog::AboutDialog(const QString &version, const QString &extraVersion, QW
fmtVersion += " (" + extraVersion + ")";
}
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));
connect(mUI.mButtons, SIGNAL(accepted()), this, SLOT(accept()));
}

View File

@ -46,7 +46,7 @@
#include "showtypes.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) :
mSettings(settings),

View File

@ -247,7 +247,7 @@ HTML_FOOTER = """
<p>
Cppcheck %s - a tool for static C/C++ code analysis</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>
<p>
</div>