summaryrefslogtreecommitdiffstats
path: root/archiveiteminfoedit.cpp
diff options
context:
space:
mode:
authorArno <am@disconnect.de>2010-05-30 10:47:41 +0200
committerArno <am@disconnect.de>2010-05-30 10:47:41 +0200
commitdaa5c2eb9148b9175302228a6bae257e84881846 (patch)
treefe071f31f4c49f9d621276cd7a6e2e290dc1f653 /archiveiteminfoedit.cpp
parent9a1ec955d9ce339e6b89714488bb866ae43bb397 (diff)
downloadSheMov-daa5c2eb9148b9175302228a6bae257e84881846.tar.gz
SheMov-daa5c2eb9148b9175302228a6bae257e84881846.tar.bz2
SheMov-daa5c2eb9148b9175302228a6bae257e84881846.zip
Bugfix: Data corruption in ArchiveItemInfoEdit
Allow more than 10 Dvds in dvd spinbox of ArchiveItemInfoEdit.
Diffstat (limited to 'archiveiteminfoedit.cpp')
-rw-r--r--archiveiteminfoedit.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/archiveiteminfoedit.cpp b/archiveiteminfoedit.cpp
index 59ab55b..70e5afe 100644
--- a/archiveiteminfoedit.cpp
+++ b/archiveiteminfoedit.cpp
@@ -68,7 +68,7 @@ ArchiveItemInfoEdit::ArchiveItemInfoEdit(QWidget *parent) : QWidget(parent){
QLabel *dvdLabel = new QLabel(tr("DVD no."));
mDvd = new QSpinBox;
mDvd->setMinimum(-1);
- mDvd->setMaximum(10);
+ mDvd->setMaximum(1000);
miscInfoLayout->addWidget(dvdLabel);
miscInfoLayout->addWidget(mDvd);
miscInfoLayout->addStretch();