X-Git-Url: https://sigrok.org/gitweb/?p=pulseview.git;a=blobdiff_plain;f=pv%2Fpopups%2Fdeviceoptions.cpp;h=06c9705f06a7e8326b3dc50c4d34f803d5fab6bd;hp=353dfcfedfe941df0ded87663eae7bf28bc2913d;hb=61703a0124c7ace84caf415f7d491a3ad6f42599;hpb=d9aecf1fcd9af471db3b59de7efc65b9632a6d79 diff --git a/pv/popups/deviceoptions.cpp b/pv/popups/deviceoptions.cpp index 353dfcfe..06c9705f 100644 --- a/pv/popups/deviceoptions.cpp +++ b/pv/popups/deviceoptions.cpp @@ -18,33 +18,36 @@ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ -#include "deviceoptions.h" +#include "deviceoptions.hpp" #include #include -#include +#include -using boost::shared_ptr; +#include + +using std::shared_ptr; + +using sigrok::Device; namespace pv { namespace popups { -DeviceOptions::DeviceOptions(shared_ptr dev_inst, - QWidget *parent) : +DeviceOptions::DeviceOptions(shared_ptr device, QWidget *parent) : Popup(parent), - _dev_inst(dev_inst), - _layout(this), - _binding(dev_inst) + device_(device), + layout_(this), + binding_(device) { - setLayout(&_layout); + setLayout(&layout_); - _layout.addWidget(_binding.get_property_form(this, true)); + layout_.addWidget(binding_.get_property_form(this, true)); } -pv::prop::binding::DeviceOptions& DeviceOptions::binding() +pv::binding::DeviceOptions& DeviceOptions::binding() { - return _binding; + return binding_; } } // namespace popups