X-Git-Url: http://git.code-monkey.de/?p=pulseview.git;a=blobdiff_plain;f=pv%2Ftoolbars%2Fsamplingbar.cpp;h=f58f4fc38fd60c2ecedce0aefae3bd8468fa6ffa;hp=27af7c7b8acfd1cc6787cfbe70f6c917f08ac1ea;hb=945745012eb57cefa1ef457daf48cfffa99f9ec2;hpb=0fc664a99e0d9a444e593123d1db7a47b1657366 diff --git a/pv/toolbars/samplingbar.cpp b/pv/toolbars/samplingbar.cpp index 27af7c7..f58f4fc 100644 --- a/pv/toolbars/samplingbar.cpp +++ b/pv/toolbars/samplingbar.cpp @@ -30,7 +30,7 @@ #include "samplingbar.h" #include -#include +#include #include #include @@ -96,14 +96,14 @@ SamplingBar::SamplingBar(SigSession &session, QWidget *parent) : } void SamplingBar::set_device_list( - const std::list< shared_ptr > &devices) + const std::list< shared_ptr > &devices) { _updating_device_selector = true; _device_selector.clear(); _device_selector_map.clear(); - BOOST_FOREACH (shared_ptr dev_inst, devices) { + BOOST_FOREACH (shared_ptr dev_inst, devices) { assert(dev_inst); const string title = dev_inst->format_device_title(); const sr_dev_inst *sdi = dev_inst->dev_inst(); @@ -119,26 +119,26 @@ void SamplingBar::set_device_list( on_device_selected(); } -shared_ptr SamplingBar::get_selected_device() const +shared_ptr SamplingBar::get_selected_device() const { const int index = _device_selector.currentIndex(); if (index < 0) - return shared_ptr(); + return shared_ptr(); const sr_dev_inst *const sdi = (const sr_dev_inst*)_device_selector.itemData( index).value(); assert(sdi); - map >:: + map >:: const_iterator iter = _device_selector_map.find(sdi); if (iter == _device_selector_map.end()) - return shared_ptr(); + return shared_ptr(); - return shared_ptr((*iter).second); + return shared_ptr((*iter).second); } -void SamplingBar::set_selected_device(boost::shared_ptr dev_inst) +void SamplingBar::set_selected_device(shared_ptr dev_inst) { assert(dev_inst); @@ -167,7 +167,7 @@ void SamplingBar::update_sample_rate_selector() if (_updating_sample_rate) return; - const shared_ptr dev_inst = get_selected_device(); + const shared_ptr dev_inst = get_selected_device(); if (!dev_inst) return; @@ -231,7 +231,7 @@ void SamplingBar::update_sample_rate_selector_value() if (_updating_sample_rate) return; - const shared_ptr dev_inst = get_selected_device(); + const shared_ptr dev_inst = get_selected_device(); if (!dev_inst) return; @@ -255,7 +255,7 @@ void SamplingBar::update_sample_count_selector() if (_updating_sample_count) return; - const shared_ptr dev_inst = get_selected_device(); + const shared_ptr dev_inst = get_selected_device(); if (!dev_inst) return; @@ -307,7 +307,7 @@ void SamplingBar::commit_sample_count() if (_updating_sample_count) return; - const shared_ptr dev_inst = get_selected_device(); + const shared_ptr dev_inst = get_selected_device(); if (!dev_inst) return; @@ -331,7 +331,7 @@ void SamplingBar::commit_sample_rate() if (_updating_sample_rate) return; - const shared_ptr dev_inst = get_selected_device(); + const shared_ptr dev_inst = get_selected_device(); if (!dev_inst) return; @@ -359,7 +359,7 @@ void SamplingBar::on_device_selected() if (_updating_device_selector) return; - const shared_ptr dev_inst = get_selected_device(); + const shared_ptr dev_inst = get_selected_device(); if (!dev_inst) return;