aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core-utils/lumina-config
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2016-12-09 07:11:26 -0500
committerKen Moore <ken@ixsystems.com>2016-12-09 07:11:26 -0500
commitd1dd25e554cea6f03b9aa840d7a95522fe7c841d (patch)
tree592c98984bf32c2ad34123dde4213c4aca53aca6 /src-qt5/core-utils/lumina-config
parentAdd a couple more options for the tip of the day. (diff)
downloadlumina-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.cpp2
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;
bgstack15