diff options
author | am <am@f440f766-f032-0410-8965-dc7d17de2ca0> | 2009-09-06 15:01:05 +0000 |
---|---|---|
committer | am <am@f440f766-f032-0410-8965-dc7d17de2ca0> | 2009-09-06 15:01:05 +0000 |
commit | 5e86b6d1cff1d9baacad8c34b062267a382b1990 (patch) | |
tree | aa16d3c60942d45205c0e9f2aaf03ba5a79a09eb /shemov.cpp | |
parent | 7c2a67b93e0e2b80bb89985c92a5aafc6b2b3d65 (diff) | |
download | SheMov-5e86b6d1cff1d9baacad8c34b062267a382b1990.tar.gz SheMov-5e86b6d1cff1d9baacad8c34b062267a382b1990.tar.bz2 SheMov-5e86b6d1cff1d9baacad8c34b062267a382b1990.zip |
-implemented statistics for quality distribution
-filter bar in archiveview can now be activated by pressing enter
git-svn-id: file:///var/svn/repos2/shemov/trunk@406 f440f766-f032-0410-8965-dc7d17de2ca0
Diffstat (limited to 'shemov.cpp')
-rw-r--r-- | shemov.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -38,6 +38,7 @@ #include "archiveviewwidget.h" #include "editarchiveitemdialog.h" #include "coverarchiveeditor.h" +#include "statisticsdialog.h" SheMov::SheMov(QWidget *parent, Qt::WindowFlags flags) : QMainWindow(parent, flags) { qApp->setWindowIcon(QIcon(":/shemov.png")); @@ -211,7 +212,8 @@ void SheMov::aboutShemov(){ } void SheMov::showStatistics(){ - + StatisticsDialog dlg(this); + dlg.exec(); } void SheMov::createStatusbar(){ |