diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-01-01 11:58:04 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-01-01 11:58:04 -0800 |
commit | 9b247af3f6de2c3278e3cafdd09a7d8685e6e0c9 (patch) | |
tree | 998a42376ece8494f7e99c62f97fcbbe5a710cb7 /qt-ui/about.cpp | |
parent | b5b26dc7560ae02d9161c3ee71119838fc8cf7e6 (diff) | |
download | subsurface-9b247af3f6de2c3278e3cafdd09a7d8685e6e0c9.tar.gz |
Always show the full git version in the about screen
This way we finally get the right version shown on Mac and Windows.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/about.cpp')
-rw-r--r-- | qt-ui/about.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qt-ui/about.cpp b/qt-ui/about.cpp index 967815337..c6081dfe8 100644 --- a/qt-ui/about.cpp +++ b/qt-ui/about.cpp @@ -15,7 +15,7 @@ SubsurfaceAbout::SubsurfaceAbout(QWidget *parent, Qt::WindowFlags f) : QDialog(p "Multi-platform divelog software<br>" "<span style='font-size: 8pt'>" "Linus Torvalds, Dirk Hohndel, Tomaz Canabrava, and others, 2011-2015" - "</span>").arg(VERSION_STRING)); + "</span>").arg(GIT_VERSION_STRING)); QShortcut *close = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_W), this); connect(close, SIGNAL(activated()), this, SLOT(close())); |