diff options
author | Arno <am@disconnect.de> | 2013-06-02 12:00:31 +0200 |
---|---|---|
committer | Arno <am@disconnect.de> | 2013-06-02 12:00:31 +0200 |
commit | 953a291517022deaf22ec682e2d0971e999508d5 (patch) | |
tree | 45e5545771f032849436ec47f8e801adc672f20a /archiveview.cpp | |
parent | 721fd40222440c6e8a81f4379f894d8908772a8a (diff) | |
download | SheMov-953a291517022deaf22ec682e2d0971e999508d5.tar.gz SheMov-953a291517022deaf22ec682e2d0971e999508d5.tar.bz2 SheMov-953a291517022deaf22ec682e2d0971e999508d5.zip |
Fix error message for ArchiveView
While thinking about merging items, I realized that it is not necessary.
Just edit the mappings instead.
However, a fallout is an error function for the TreeView.
Diffstat (limited to 'archiveview.cpp')
-rw-r--r-- | archiveview.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/archiveview.cpp b/archiveview.cpp index 2e649f1..4d9e370 100644 --- a/archiveview.cpp +++ b/archiveview.cpp @@ -173,7 +173,7 @@ void ArchiveTree::rename(){ QModelIndex idx = currentIndex(); int nodeType = idx.data(ArchiveModel::TypeRole).toInt(); if(nodeType == ArchiveModel::SeriesPartNode){ - QMessageBox::critical(this, tr("Error"), tr("This function is not possible. Rename the Series instead!")); + impossible(); return; } QString currentName = idx.data(ArchiveModel::NameRole).toString(); @@ -185,6 +185,10 @@ void ArchiveTree::rename(){ } } +void ArchiveTree::impossible(const QString msg){ + QMessageBox::critical(this, tr("Error"), msg); +} + ArchiveProgressDialog::ArchiveProgressDialog(QWidget *parent, Qt::WindowFlags f) : QDialog(parent, f){ QHBoxLayout *mainLayout = new QHBoxLayout; mMessage = new QLabel; |