]> sigrok.org Git - pulseview.git/blobdiff - pv/device/devinst.cpp
Update for 'probe_group' -> 'channel_group' rename in libsigrok.
[pulseview.git] / pv / device / devinst.cpp
index 86595ae79069a9c7e2b9e33700e1c5eee7be8661..f85c6f5e0dd7ea8756784521f6eca36df2e60af8 100644 (file)
@@ -56,7 +56,7 @@ SigSession* DevInst::owner() const
        return _owner;
 }
 
-GVariant* DevInst::get_config(const sr_probe_group *group, int key)
+GVariant* DevInst::get_config(const sr_channel_group *group, int key)
 {
        GVariant *data = NULL;
        assert(_owner);
@@ -67,7 +67,7 @@ GVariant* DevInst::get_config(const sr_probe_group *group, int key)
        return data;
 }
 
-bool DevInst::set_config(const sr_probe_group *group, int key, GVariant *data)
+bool DevInst::set_config(const sr_channel_group *group, int key, GVariant *data)
 {
        assert(_owner);
        sr_dev_inst *const sdi = dev_inst();
@@ -79,7 +79,7 @@ bool DevInst::set_config(const sr_probe_group *group, int key, GVariant *data)
        return false;
 }
 
-GVariant* DevInst::list_config(const sr_probe_group *group, int key)
+GVariant* DevInst::list_config(const sr_channel_group *group, int key)
 {
        GVariant *data = NULL;
        assert(_owner);