X-Git-Url: http://git.code-monkey.de/?a=blobdiff_plain;f=pv%2Fview%2Fviewport.cpp;h=d3f25aa6ba2bb82e07aa0afd1a389f6a13f9c6f9;hb=83b1c8d251386ac1980284c4668cbdd8e425550f;hp=564b331cf99e6157c92f857f8126a80700c5efc4;hpb=f4e57597347e47a4ea58fbdc7b0a22e07f1c0ede;p=pulseview.git diff --git a/pv/view/viewport.cpp b/pv/view/viewport.cpp index 564b331..d3f25aa 100644 --- a/pv/view/viewport.cpp +++ b/pv/view/viewport.cpp @@ -14,8 +14,7 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ #include @@ -38,10 +37,7 @@ using std::abs; using std::back_inserter; using std::copy; using std::dynamic_pointer_cast; -using std::max; -using std::min; -using std::none_of; -using std::numeric_limits; +using std::none_of; // Used in assert()s. using std::shared_ptr; using std::stable_sort; using std::vector; @@ -103,7 +99,7 @@ void Viewport::drag_release() vector< shared_ptr > Viewport::items() { vector< shared_ptr > items; - const std::vector< shared_ptr > view_items( + const vector< shared_ptr > view_items( view_.list_by_type()); copy(view_items.begin(), view_items.end(), back_inserter(items)); const vector< shared_ptr > time_items(view_.time_items());