diff options
author | Arno <am@disconnect.de> | 2010-05-24 14:49:12 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2010-05-24 14:49:12 +0200 |
commit | d8497433f784649e5b388fd8e727a2e841886e46 (patch) | |
tree | 54abcc08e2e5af835507465042a83aaf252ab669 /archiveeditdialog.cpp | |
parent | 1656d5e88a301afaec65e13566d72abecb1c8d3b (diff) | |
download | SheMov-d8497433f784649e5b388fd8e727a2e841886e46.tar.gz SheMov-d8497433f784649e5b388fd8e727a2e841886e46.tar.bz2 SheMov-d8497433f784649e5b388fd8e727a2e841886e46.zip |
Bugfix for commit 8827510ec55eda169340b5414bd60eb3ba3bfb79 et al.
Remove duplicate QLabels in ArchiveEditDialog after given commit. Also
readd ListModel to genre QComboBox in the dialog. Seems I deleted a
little to much.
Diffstat (limited to 'archiveeditdialog.cpp')
-rw-r--r-- | archiveeditdialog.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/archiveeditdialog.cpp b/archiveeditdialog.cpp index 35f1ef2..41f303f 100644 --- a/archiveeditdialog.cpp +++ b/archiveeditdialog.cpp @@ -42,15 +42,11 @@ ArchiveEditDialog::ArchiveEditDialog(QWidget *parent, Qt::WindowFlags f) : QDial QVBoxLayout *editorLayout = new QVBoxLayout; //genre editor - QLabel *l1 = new QLabel(tr("Edit genres")); mGenreEditor = new ListEditor(mGenreModel); - editorLayout->addWidget(l1); editorLayout->addWidget(mGenreEditor); //actor editor - QLabel *l2 = new QLabel(tr("Edit actors")); mActorsEditor = new ListEditor(mActorsModel); - editorLayout->addWidget(l2); editorLayout->addWidget(mActorsEditor); //cover editor |