summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2010-10-30 09:42:29 +0200
committerArno <am@disconnect.de>2010-10-30 10:09:58 +0200
commit629841d403b13396e97d76591c3b67f156039b5c (patch)
tree270c46ca627fa9874c4c6f3a84baaff1db9aa0b8
parentb4c2989e289e482a85a71db1c43f425079bcd15f (diff)
downloadSheMov-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.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/shemov.cpp b/shemov.cpp
index 8009daf..ac11916 100644
--- a/shemov.cpp
+++ b/shemov.cpp
@@ -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);