From bd533e305d433c6cd556b876e3c66b075f239038 Mon Sep 17 00:00:00 2001 From: Tim Mayberry Date: Tue, 30 Aug 2016 12:11:03 +1000 Subject: [PATCH] Use XMLNode::set_property API in WiimoteControlProtocol class --- libs/surfaces/wiimote/wiimote.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/surfaces/wiimote/wiimote.cc b/libs/surfaces/wiimote/wiimote.cc index 56078545be..59f0ea2c86 100644 --- a/libs/surfaces/wiimote/wiimote.cc +++ b/libs/surfaces/wiimote/wiimote.cc @@ -89,7 +89,7 @@ XMLNode& WiimoteControlProtocol::get_state () { XMLNode& node (ControlProtocol::get_state()); - node.add_property (X_("feedback"), "0"); + node.set_property (X_("feedback"), "0"); return node; }