diff options
author | Arno <am@disconnect.de> | 2010-12-22 10:43:59 +0100 |
---|---|---|
committer | Arno <am@disconnect.de> | 2010-12-22 10:43:59 +0100 |
commit | 270b5d60263c66c170ca37ac6d19c0df5060c981 (patch) | |
tree | 3c5203d53a6bbc19e91d136e21fe109c1b7fe7a6 /fileview.h | |
parent | f3d62ad86a1def4d11d132af7366874f43a438b9 (diff) | |
download | SheMov-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.h | 7 |
1 files changed, 0 insertions, 7 deletions
@@ -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; |