diff options
author | Arno <am@disconnect.de> | 2010-10-30 09:42:29 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2010-10-30 10:09:58 +0200 |
commit | 629841d403b13396e97d76591c3b67f156039b5c (patch) | |
tree | 270c46ca627fa9874c4c6f3a84baaff1db9aa0b8 | |
parent | b4c2989e289e482a85a71db1c43f425079bcd15f (diff) | |
download | SheMov-629841d403b13396e97d76591c3b67f156039b5c.tar.gz SheMov-629841d403b13396e97d76591c3b67f156039b5c.tar.bz2 SheMov-629841d403b13396e97d76591c3b67f156039b5c.zip |
Fix about dialog
Removed reference to cryptopp from about dialog. Not using it any more
for a long time. Also added build field. When calling distrib.sh it's
replaced with the commit no. and the date.
-rw-r--r-- | shemov.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -204,9 +204,9 @@ void SheMov::aboutShemov(){ aboutText.append(tr("<tr><td>Author<td></td>Sissy herself</td></tr>")); aboutText.append(QString(tr("<tr><td>Organization</td><td>%1</td></tr>")).arg(qApp->organizationName())); aboutText.append(QString(tr("<tr><td>Version</td><td>%1</td></tr>")).arg(qApp->applicationVersion())); + aboutText.append(QString(tr("<tr><td>Build:</td><td>/* __debug build__ */</td></tr>"))); aboutText.append(tr("<tr><td>Dependencies</td><td><ul>")); aboutText.append(tr("<li>Qt (thanks to Nokia for this great library)</li>")); - aboutText.append(tr("<li>cryptopp for hashing the movies (thanks)</li>")); aboutText.append(tr("<li>libmagic for figuring out the file type</li>")); aboutText.append("</ul></tr></table>"); QMessageBox::about(this, aboutLabel, aboutText); |