X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fpopups%2Fchannels.cpp;h=61a8aee071b382e9fc626a89ec08e2cda7975213;hp=f30ce627d72f3ae675571506f5eb58b878a57570;hb=3cc9ad7b867853315473df611612c562d562ed8a;hpb=f65cd27bdbf70644052dd43dac4bbe9403f4dfee diff --git a/pv/popups/channels.cpp b/pv/popups/channels.cpp index f30ce627..61a8aee0 100644 --- a/pv/popups/channels.cpp +++ b/pv/popups/channels.cpp @@ -27,11 +27,11 @@ #include "channels.hpp" -#include +#include #include #include -#include +#include using namespace Qt; @@ -151,14 +151,14 @@ void Channels::set_all_channels(bool set) void Channels::populate_group(shared_ptr group, const vector< shared_ptr > 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 binding; + shared_ptr binding; if (group) - binding = shared_ptr(new DeviceOptions(group)); + binding = shared_ptr(new Device(group)); // Create a title if the group is going to have any content if ((!sigs.empty() || (binding && !binding->properties().empty())) &&