X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fdevice%2Fdevinst.cpp;h=f85c6f5e0dd7ea8756784521f6eca36df2e60af8;hp=86595ae79069a9c7e2b9e33700e1c5eee7be8661;hb=2445160a5d1eb98196d2a1d57246d4c37dd13811;hpb=9f46d9058be2cc2b11ccecb0ba4c4f61d55bec1a diff --git a/pv/device/devinst.cpp b/pv/device/devinst.cpp index 86595ae..f85c6f5 100644 --- a/pv/device/devinst.cpp +++ b/pv/device/devinst.cpp @@ -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);