X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=pv%2Fsubwindows%2Fdecoder_selector%2Fitem.cpp;h=0ce5ab73844c61eb41e669ca127247210e443caf;hb=HEAD;hp=00c469e062ceaea8f1c1a1e4a456ce6276aabad1;hpb=97378470ded88af84edaa0f1063d10d834475665;p=pulseview.git diff --git a/pv/subwindows/decoder_selector/item.cpp b/pv/subwindows/decoder_selector/item.cpp index 00c469e0..0ce5ab73 100644 --- a/pv/subwindows/decoder_selector/item.cpp +++ b/pv/subwindows/decoder_selector/item.cpp @@ -41,7 +41,7 @@ shared_ptr DecoderCollectionItem::subItem(int row) const { try { return subItems_.at(row); - } catch (out_of_range) { + } catch (out_of_range&) { return nullptr; } } @@ -74,7 +74,7 @@ int DecoderCollectionItem::columnCount() const int DecoderCollectionItem::row() const { if (parent_) - for (uint i = 0; i < parent_->subItems_.size(); i++) + for (size_t i = 0; i < parent_->subItems_.size(); i++) if (parent_->subItems_.at(i).get() == const_cast(this)) return i; @@ -85,7 +85,7 @@ QVariant DecoderCollectionItem::data(int column) const { try { return data_.at(column); - } catch (out_of_range) { + } catch (out_of_range&) { return QVariant(); } }