diff options
author | Johann Latocha | 2011-09-29 12:31:53 +0200 |
---|---|---|
committer | Johann Latocha | 2011-09-29 12:31:53 +0200 |
commit | 3852c23742c372184293e2993aa1d79b62eced25 (patch) | |
tree | 4ec463c74cd04d8052c4e70c3694bf0579eb0beb | |
parent | Enhancement #843 (diff) | |
download | pvs-3852c23742c372184293e2993aa1d79b62eced25.tar.gz pvs-3852c23742c372184293e2993aa1d79b62eced25.tar.xz pvs-3852c23742c372184293e2993aa1d79b62eced25.zip |
Defect #841
-rw-r--r-- | src/gui/projectionDialog.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/projectionDialog.cpp b/src/gui/projectionDialog.cpp index 5339df0..32e4651 100644 --- a/src/gui/projectionDialog.cpp +++ b/src/gui/projectionDialog.cpp @@ -61,7 +61,8 @@ void ProjectionDialog::setupContent(QList<QString> content) QString item; foreach(item, content) { - if (dozentList.contains(item)) item.append(" (Tutor PC)"); + // FIXME: Projection on tutor PC does not work bc. we change his name here... + // if (dozentList.contains(item)) item.append(" (Tutor PC)"); QCheckBox *checkbox = new QCheckBox(item,this); pui->verticalLayout_2->addWidget(checkbox); checkList.push_back(checkbox); |