summaryrefslogtreecommitdiffstats
path: root/fileview.h
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2010-12-22 10:43:59 +0100
committerArno <am@disconnect.de>2010-12-22 10:43:59 +0100
commit270b5d60263c66c170ca37ac6d19c0df5060c981 (patch)
tree3c5203d53a6bbc19e91d136e21fe109c1b7fe7a6 /fileview.h
parentf3d62ad86a1def4d11d132af7366874f43a438b9 (diff)
downloadSheMov-270b5d60263c66c170ca37ac6d19c0df5060c981.tar.gz
SheMov-270b5d60263c66c170ca37ac6d19c0df5060c981.tar.bz2
SheMov-270b5d60263c66c170ca37ac6d19c0df5060c981.zip
Removed last instances of MessageDialog
Removed two instances of MessageDialog from FileView and replaced them with QInputDialogs. Also got rid of the awkward doCreateFolder and doMark slots.
Diffstat (limited to 'fileview.h')
-rw-r--r--fileview.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/fileview.h b/fileview.h
index f3bb349..f913179 100644
--- a/fileview.h
+++ b/fileview.h
@@ -13,7 +13,6 @@
class QContextMenuEvent;
class QKeyEvent;
class QResizeEvent;
-class MessageDialog;
class QModelIndex;
class QAction;
class HoverWindow;
@@ -42,10 +41,6 @@ class FileView : public QTreeView {
protected slots:
virtual void closeEditor(QWidget *editor, QAbstractItemDelegate::EndEditHint hint);
- private slots:
- void doMark();
- void doCreateFolder();
-
protected:
virtual void contextMenuEvent(QContextMenuEvent *e);
virtual void keyPressEvent(QKeyEvent *e);
@@ -56,8 +51,6 @@ class FileView : public QTreeView {
enum HoverFileType { Dir, Movie, Image, None };
bool exitHover(bool exitVal = true);
void doHover(const QFileInfo &fi, int type);
- MessageDialog *mMarkDialog;
- MessageDialog *mCreateFolderDialog;
QAction *mDeleteA;
HoverWindow *mHoverWin;
QModelIndex mCurHover;