Try to give some credit to the 3rd party libraries we use.
This commit is contained in:
parent
c78de5cdb5
commit
6717f49f20
|
@ -1157,5 +1157,11 @@ void CmdLineParser::printHelp()
|
|||
" cppcheck -I inc1/ -I inc2/ f.cpp\n"
|
||||
"\n"
|
||||
"For more information:\n"
|
||||
" http://cppcheck.net/manual.pdf\n";
|
||||
" http://cppcheck.net/manual.pdf\n"
|
||||
"\n"
|
||||
"Many thanks to the 3rd party libraries we use:\n"
|
||||
" * tinyxml2 -- loading project/library/ctu files.\n"
|
||||
" * picojson -- loading compile database.\n"
|
||||
" * pcre -- rules.\n"
|
||||
" * qt -- used in GUI\n";
|
||||
}
|
||||
|
|
16
gui/about.ui
16
gui/about.ui
|
@ -7,7 +7,7 @@
|
|||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>478</width>
|
||||
<height>300</height>
|
||||
<height>375</height>
|
||||
</rect>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
|
@ -78,7 +78,7 @@
|
|||
<item>
|
||||
<widget class="QLabel" name="mCopyright">
|
||||
<property name="text">
|
||||
<string>Copyright © 2007-2018 Cppcheck team.</string>
|
||||
<string>Copyright © 2007-2019 Cppcheck team.</string>
|
||||
</property>
|
||||
<property name="wordWrap">
|
||||
<bool>true</bool>
|
||||
|
@ -109,6 +109,18 @@ of the GNU General Public License version 3</string>
|
|||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<widget class="QLabel" name="mUsedLibs">
|
||||
<property name="text">
|
||||
<string><html><head/><body>
|
||||
<p>Many thanks to these libraries that we use:</p><ul>
|
||||
<li>tinyxml2</li>
|
||||
<li>picojson</li>
|
||||
<li>pcre</li>
|
||||
<li>qt</li></ul></body></html></string>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</item>
|
||||
</layout>
|
||||
|
|
Loading…
Reference in New Issue