UTF-8 fixes to GUI files
aboutdialog.* added to codeblocks projectfile
This commit is contained in:
parent
90b786b09c
commit
51349d126b
|
@ -30,6 +30,8 @@
|
|||
<Add option="-Wall" />
|
||||
<Add option="-fexceptions" />
|
||||
</Compiler>
|
||||
<Unit filename="gui/aboutdialog.cpp" />
|
||||
<Unit filename="gui/aboutdialog.h" />
|
||||
<Unit filename="gui/applicationdialog.cpp" />
|
||||
<Unit filename="gui/applicationdialog.h" />
|
||||
<Unit filename="gui/applicationlist.cpp" />
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* Cppcheck - A tool for static C/C++ code analysis
|
||||
* Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team.
|
||||
* Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
@ -41,7 +41,7 @@ AboutDialog::AboutDialog(const QString &version, QWidget *parent)
|
|||
iconLabel->setPixmap(icon->pixmap(QSize(48, 48)));
|
||||
QLabel *name = new QLabel(tr("Cppcheck - A tool for static C/C++ code analysis."));
|
||||
QLabel *ver = new QLabel(QString(tr("Version %1")).arg(mVersion));
|
||||
QLabel *copy = new QLabel(("Copyright (C) 2007-2009 Daniel Marjamäki and cppcheck team."));
|
||||
QLabel *copy = new QLabel(("Copyright (C) 2007-2009 Daniel Marjamäki and cppcheck team."));
|
||||
copy->setWordWrap(true);
|
||||
QLabel *gpl = new QLabel(tr("This program is licensed under the terms " \
|
||||
"of the GNU General Public License version 3"));
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
/*
|
||||
* Cppcheck - A tool for static C/C++ code analysis
|
||||
* Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team.
|
||||
* Copyright (C) 2007-2009 Daniel Marjamäki and Cppcheck team.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
|
|
Loading…
Reference in New Issue