From 56a3380b46f406ffaf093405ac2db4515b0a4f80 Mon Sep 17 00:00:00 2001 From: "FWoltermann@gmail.com" Date: Mon, 28 May 2012 16:44:39 +0000 Subject: Removes the ArrayList classes, and replaces all instances with std::vector implementations. --- Magic2/UVMapView.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Magic2/UVMapView.h') diff --git a/Magic2/UVMapView.h b/Magic2/UVMapView.h index 87b0eeb..fb40cbf 100644 --- a/Magic2/UVMapView.h +++ b/Magic2/UVMapView.h @@ -16,10 +16,10 @@ #ifndef UVMapView_h #define UVMapView_h +#include #include "View.h" #include "Polygon.h" #include "List.h" -#include "ArrayList.h" // +--------------------------------------------------------------------+ @@ -74,7 +74,7 @@ protected: int select_mode; bool active; - ArrayList selverts; + std::vector selverts; }; // +--------------------------------------------------------------------+ -- cgit v1.1