From a82cc0e868dedb1a6769ab97e6b7ea79ef66fa5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=B2=20Genesio=20=28=E4=BA=8C=E3=82=B3=E3=82=B2?= =?UTF-8?q?=E3=83=8D=29?= Date: Fri, 14 Jul 2023 17:24:08 +0200 Subject: [PATCH] FrameGrabberGui2: fix after remote_grabber deprecation --- src/tools/frameGrabberGui2/dc1394thread.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tools/frameGrabberGui2/dc1394thread.cpp b/src/tools/frameGrabberGui2/dc1394thread.cpp index 1a41654b2d..4453035f95 100644 --- a/src/tools/frameGrabberGui2/dc1394thread.cpp +++ b/src/tools/frameGrabberGui2/dc1394thread.cpp @@ -28,14 +28,14 @@ void DC1394Thread::run() // create usb thread yarp::os::Property config; - config.put("device", "remote_grabber"); + config.put("device", "frameGrabber_nwc_yarp"); config.put("remote",rem.toLatin1().data()); config.put("local",loc.toLatin1().data()); bool opened = grabberControl->open(config); if(!opened) { - yError() << "Cannot open remote_grabber device."; + yError() << "Cannot open frameGrabber_nwc_yarp device."; // TODO: What to do here?? }