]> sigrok.org Git - pulseview.git/blobdiff - pv/popups/channels.cpp
Renamed pv::binding::DeviceOptions and DecoderOptions to Device and Decoder
[pulseview.git] / pv / popups / channels.cpp
index 7dedb317cf8428043ca9d3701744e04aae71a86b..61a8aee071b382e9fc626a89ec08e2cda7975213 100644 (file)
@@ -27,7 +27,7 @@
 
 #include "channels.hpp"
 
-#include <pv/prop/binding/deviceoptions.hpp>
+#include <pv/binding/device.hpp>
 #include <pv/session.hpp>
 #include <pv/view/signal.hpp>
 
@@ -151,14 +151,14 @@ void Channels::set_all_channels(bool set)
 void Channels::populate_group(shared_ptr<ChannelGroup> group,
        const vector< shared_ptr<pv::view::Signal> > sigs)
 {
-       using pv::prop::binding::DeviceOptions;
+       using pv::binding::Device;
 
        // Only bind options if this is a group. We don't do it for general
        // options, because these properties are shown in the device config
        // popup.
-       shared_ptr<DeviceOptions> binding;
+       shared_ptr<Device> binding;
        if (group)
-               binding = shared_ptr<DeviceOptions>(new DeviceOptions(group));
+               binding = shared_ptr<Device>(new Device(group));
 
        // Create a title if the group is going to have any content
        if ((!sigs.empty() || (binding && !binding->properties().empty())) &&