Skip to content

Commit 4d13a58

Browse files
committed
Enum bug fixed. Version set to 1.0.0-beta.
1 parent 65772ce commit 4d13a58

3 files changed

Lines changed: 6 additions & 3 deletions

File tree

3rdParty/QtnProperty/QtnProperty/Enum.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ bool QtnEnumInfo::toStr(QString &str, const QtnEnumValueInfo *value) const
149149
if (!value)
150150
return false;
151151

152-
str = QString("%1::%2").arg(name(), value->name());
152+
str = value->name();
153153
return true;
154154
}
155155

src/Application.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Application::Application(int& argc, char** argv)
1717
setOrganizationName("CEGUI");
1818
setOrganizationDomain("cegui.org.uk");
1919
setApplicationName("CEED - CEGUI editor");
20-
setApplicationVersion("0.0.0-master");
20+
setApplicationVersion("1.0.0-beta");
2121

2222
// Create settings and load all values from the persistence store
2323
settings = new Settings(new QSettings("CEGUI", "CEED", this));

src/ui/dialogs/AboutDialog.cpp

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ AboutDialog::AboutDialog(QWidget *parent) :
1212
// Background, see the data/images directory for SVG source
1313
ui->aboutImage->setPixmap(QPixmap(":/images/splashscreen.png"));
1414

15-
ui->CEEDDescription->setText("Please report any issues to help this project.");
15+
ui->CEEDDescription->setText("Please <a href=\"https://github.com/niello/ceed-cpp/issues/new\">report any issues</a> to help this project.");
16+
ui->CEEDDescription->setTextFormat(Qt::RichText);
17+
ui->CEEDDescription->setTextInteractionFlags(Qt::TextBrowserInteraction);
18+
ui->CEEDDescription->setOpenExternalLinks(true);
1619

1720
ui->CEEDVersion->setText("CEED: " + qApp->applicationVersion());
1821
ui->QtVersion->setText("Qt: " + QString(qVersion()));

0 commit comments

Comments
 (0)