diff options
author | Ken Moore <ken@ixsystems.com> | 2016-12-09 07:11:26 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2016-12-09 07:11:26 -0500 |
commit | d1dd25e554cea6f03b9aa840d7a95522fe7c841d (patch) | |
tree | 592c98984bf32c2ad34123dde4213c4aca53aca6 /src-qt5/core-utils/lumina-config | |
parent | Add a couple more options for the tip of the day. (diff) | |
download | lumina-d1dd25e554cea6f03b9aa840d7a95522fe7c841d.tar.gz lumina-d1dd25e554cea6f03b9aa840d7a95522fe7c841d.tar.bz2 lumina-d1dd25e554cea6f03b9aa840d7a95522fe7c841d.zip |
Fix up a build error on the cluster (not sure why the cluster had a problem with this - works fine locally).
Diffstat (limited to 'src-qt5/core-utils/lumina-config')
-rw-r--r-- | src-qt5/core-utils/lumina-config/pages/page_mouse.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/core-utils/lumina-config/pages/page_mouse.cpp b/src-qt5/core-utils/lumina-config/pages/page_mouse.cpp index 8f5c0c23..a9f3168a 100644 --- a/src-qt5/core-utils/lumina-config/pages/page_mouse.cpp +++ b/src-qt5/core-utils/lumina-config/pages/page_mouse.cpp @@ -151,7 +151,7 @@ void page_mouse::populateDeviceItemValue(QTreeWidget *tree, QTreeWidgetItem *it, tree->setItemWidget(it, 1, box); connect(box, SIGNAL(valueChanged(double)), this, SLOT(valueChanged()) ); - }else if(value.canConvert<QList<QVariant>>()){ + }else if(value.canConvert< QList<QVariant> >()){ //Not Modifiable - just use the label in the item QList<QVariant> list = value.toList(); QStringList txtList; |