]> sigrok.org Git - pulseview.git/blobdiff - pv/data/logic.cpp
Annotation: Use special type for the class, not plain int
[pulseview.git] / pv / data / logic.cpp
index 084e8efd7f231fd920a0da8dfad18cfd9e4ac66e..e78c28468d71ef42da07e7e0eb102076889cfd38 100644 (file)
@@ -44,7 +44,7 @@ unsigned int Logic::num_channels() const
 
 void Logic::push_segment(shared_ptr<LogicSegment> &segment)
 {
-       segments_.push_front(segment);
+       segments_.push_back(segment);
 }
 
 const deque< shared_ptr<LogicSegment> >& Logic::logic_segments() const
@@ -57,9 +57,9 @@ vector< shared_ptr<Segment> > Logic::segments() const
        return vector< shared_ptr<Segment> >(segments_.begin(), segments_.end());
 }
 
-int Logic::get_segment_count() const
+uint32_t Logic::get_segment_count() const
 {
-       return segments_.size();
+       return (uint32_t)segments_.size();
 }
 
 void Logic::clear()