From 63d526194c5de77cffd2f16dfd360a74ea3ad5e4 Mon Sep 17 00:00:00 2001 From: oliverhaag Date: Wed, 21 Nov 2012 19:42:45 +0000 Subject: [PATCH] DSO-2250 fix --- openhantek/ChangeLog | 3 +++ openhantek/src/hantek/device.cpp | 6 ++---- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/openhantek/ChangeLog b/openhantek/ChangeLog index 169aaba..fdc001a 100644 --- a/openhantek/ChangeLog +++ b/openhantek/ChangeLog @@ -180,3 +180,6 @@ 2012-11-05 Oliver Haag * Added new SiSpinBox * Replaced ComboBox with SiSpinBox for time- and frequencybase + +2012-11-21 Oliver Haag +* Bugfix: DSO-2250 detection failed diff --git a/openhantek/src/hantek/device.cpp b/openhantek/src/hantek/device.cpp index c0333b0..351fb46 100644 --- a/openhantek/src/hantek/device.cpp +++ b/openhantek/src/hantek/device.cpp @@ -40,10 +40,8 @@ namespace Hantek { /// \param parent The parent widget. Device::Device(QObject *parent) : QObject(parent) { // Product ids and names for the Model enum - this->modelIds << 0x2090 << 0x2100 << 0x2150 << 0x2250 - << 0x5200 << 0x520A; - this->modelStrings << "DSO-2090" << "DSO-2100" << "DSO-2150" << "DSO-2250" - << "DSO-5200" << "DSO-5200A"; + this->modelIds << 0x2090 << 0x2150 << 0x2250 << 0x5200 << 0x520A; + this->modelStrings << "DSO-2090" << "DSO-2150" << "DSO-2250" << "DSO-5200" << "DSO-5200A"; this->model = MODEL_UNKNOWN; this->beginCommandControl = new ControlBeginCommand(); -- libgit2 0.21.4