forked from qt-creator/qt-creator
Core: Allow adding additional information to about dialog.
Purpose is to get rid of hard coded license information string in the Qt Creator binary. Change-Id: I867e2aed010f8a622adfbb89ac96dccbc8229161 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
@@ -239,6 +239,16 @@ void MainWindow::setOverrideColor(const QColor &color)
|
||||
m_overrideColor = color;
|
||||
}
|
||||
|
||||
QStringList MainWindow::additionalAboutInformation() const
|
||||
{
|
||||
return m_aboutInformation;
|
||||
}
|
||||
|
||||
void MainWindow::appendAboutInformation(const QString &line)
|
||||
{
|
||||
m_aboutInformation.append(line);
|
||||
}
|
||||
|
||||
MainWindow::~MainWindow()
|
||||
{
|
||||
// explicitly delete window support, because that calls methods from ICore that call methods
|
||||
|
||||
Reference in New Issue
Block a user