tiny change to show version number in settings
Change-Id: I7132b3661fb037ff2f27e06a0a51c753928ca659
diff --git a/gui/chronosharegui.cpp b/gui/chronosharegui.cpp
index bc02c70..cc459a5 100644
--- a/gui/chronosharegui.cpp
+++ b/gui/chronosharegui.cpp
@@ -78,7 +78,9 @@
pal.setColor(QPalette::Active, QPalette::Base, pal.color(QPalette::Disabled, QPalette::Base));
editSharedFolderPath->setPalette(pal);
button = new QPushButton("Submit");
- label = new QLabel();
+
+ QString versionString = QString("Version: ChronoShare v%1").arg(CHRONOSHARE_VERSION);
+ label = new QLabel(versionString, this);
connect(button, SIGNAL(clicked()), this, SLOT(changeSettings()));