diff options
Diffstat (limited to 'Magic2/UVMapView.h')
-rw-r--r-- | Magic2/UVMapView.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 <vector>
#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<DWORD> selverts;
};
// +--------------------------------------------------------------------+
|