Skip to content

Commit 3e15e40

Browse files
committed
plugins/dmxusb: try to fix the Windows build
1 parent b883bf1 commit 3e15e40

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

plugins/dmxusb/src/usbdmxlegacy.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
#define USBDMXLEGACY_CMD_SET_LAST_TX_HIGH_ADDRESS_BIT 0x4F
2828

2929

30-
UsbdmxLegacy::UsbdmxLegacy(DMXInterface *interface, quint32 outputLine)
31-
: DMXUSBWidget(interface, outputLine, USBDMXLEGACY_DEFAULT_FREQUENCY)
30+
UsbdmxLegacy::UsbdmxLegacy(DMXInterface *iface, quint32 outputLine)
31+
: DMXUSBWidget(iface, outputLine, USBDMXLEGACY_DEFAULT_FREQUENCY)
3232
{
3333
// configure one output port
3434
QList<int> ports;

plugins/dmxusb/src/usbdmxlegacy.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class UsbdmxLegacy : public QThread, public DMXUSBWidget
3232
* Initialization
3333
************************************************************************/
3434
public:
35-
UsbdmxLegacy(DMXInterface *interface, quint32 outputLine);
35+
UsbdmxLegacy(DMXInterface *iface, quint32 outputLine);
3636
virtual ~UsbdmxLegacy();
3737

3838
/** @reimp */

0 commit comments

Comments
 (0)