diff options
author | Arno <am@disconnect.de> | 2010-12-06 19:10:19 +0100 |
---|---|---|
committer | Arno <am@disconnect.de> | 2010-12-06 19:10:19 +0100 |
commit | a87e4d8c3c2102e9728dd5df303acca7ae08b343 (patch) | |
tree | 29b2b7d2c5f532da2ea18152e7cf34ad51b1016f /filesystemwidget.h | |
parent | cb4d80e6a642ef0cd3180aed2155d86144c83395 (diff) | |
download | SheMov-a87e4d8c3c2102e9728dd5df303acca7ae08b343.tar.gz SheMov-a87e4d8c3c2102e9728dd5df303acca7ae08b343.tar.bz2 SheMov-a87e4d8c3c2102e9728dd5df303acca7ae08b343.zip |
Edit values in archive
This commit introduces QInputDialogs for all values editable in the
archive. Inline editing in the view doesn't seem the right choice
regarding usability.
Fixed a long standing bug in nextDvdNo(). That was off by one. Return
one more than max(value). Also got rid of DvdNoDialog, replaced by a
QInputDialog.
Diffstat (limited to 'filesystemwidget.h')
-rw-r--r-- | filesystemwidget.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/filesystemwidget.h b/filesystemwidget.h index 0cc3abc..e41ff52 100644 --- a/filesystemwidget.h +++ b/filesystemwidget.h @@ -34,12 +34,12 @@ class FilesystemWidget : public QWidget { Q_OBJECT public: FilesystemWidget(QWidget *parent = 0); - ~FilesystemWidget() {}; - FileView *fileView() { return mFileView; }; - FilesystemFileProxy *fileProxy() { return mFileProxy; }; - FileSystemModel *dirModel() { return mModel; }; - const QString windowTitle() const { return mWindowTitle; }; - PictureViewer *pictureViewer() { return mPicViewer; }; + ~FilesystemWidget() {} + FileView *fileView() { return mFileView; } + FilesystemFileProxy *fileProxy() { return mFileProxy; } + FileSystemModel *dirModel() { return mModel; } + const QString windowTitle() const { return mWindowTitle; } + PictureViewer *pictureViewer() { return mPicViewer; } bool isMounted(); signals: |