diff options
| author | Arno <am@disconnect.de> | 2011-12-28 19:46:10 +0100 | 
|---|---|---|
| committer | Arno <am@disconnect.de> | 2011-12-28 19:46:10 +0100 | 
| commit | de520355e8f37f5a70015e98a505ee25810b2620 (patch) | |
| tree | 5f4b2e2297dedc5f73c344a717cdc3daadfa16e6 /dbanalyzer.h | |
| parent | 83d2b014f563b9de387c4d8e9e45adbb36b56825 (diff) | |
| download | SheMov-de520355e8f37f5a70015e98a505ee25810b2620.tar.gz SheMov-de520355e8f37f5a70015e98a505ee25810b2620.tar.bz2 SheMov-de520355e8f37f5a70015e98a505ee25810b2620.zip  | |
Delete items in DbAnalyzer (again)
While making it possible to mark items in DbAnalyzerDialog I removed the
button for deleting items. That is obviously wrong, fix it.
Diffstat (limited to 'dbanalyzer.h')
| -rw-r--r-- | dbanalyzer.h | 3 | 
1 files changed, 3 insertions, 0 deletions
diff --git a/dbanalyzer.h b/dbanalyzer.h index 25b0bfb..c0b8f14 100644 --- a/dbanalyzer.h +++ b/dbanalyzer.h @@ -24,6 +24,7 @@ class QPushButton;  class SmTreeModel;  class DbAnalyzer;  class QLabel; +class QStackedLayout;  class DbAnalyzerDialog : public QDialog {      Q_OBJECT @@ -64,11 +65,13 @@ class DbAnalyzerDialog : public QDialog {          QPushButton *mCancel;          QPushButton *mMark;          QPushButton *mRefresh; +        QPushButton *mDelete;          QLabel *mTotal;          QList<QString> mTotals;          DbAnalyzer *mAnalyzer;          int mMarkMode;          QTreeView *mCurrentView; +        QStackedLayout *mButtonStack;  };  class DbAnalyzer : public QThread {  | 
