From a6425611121f27234632d85e0ce024f60499f6e4 Mon Sep 17 00:00:00 2001
From: Gundalf <gundalf01@users.sourceforge.net>
Date: Wed, 28 Jun 2006 18:29:10 +0000
Subject: [PATCH] Updated to latest changes in plugins.

---
 NifProps/NifProps.cpp | 8 ++++----
 NifProps/NifStrings.h | 8 ++++----
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/NifProps/NifProps.cpp b/NifProps/NifProps.cpp
index 3d36943..af7c5a8 100755
--- a/NifProps/NifProps.cpp
+++ b/NifProps/NifProps.cpp
@@ -135,28 +135,28 @@ void NifProps::BeginEditParams(Interface *ip, IUtil *iu)
 	mNode = NULL;
 
 	const char **str;
-	str = HvkMaterialNames;
+	str = NpHvkMaterialNames;
 	while (*str)
 	{
 		mCbMaterial.add(*str);
 		str++;
 	}
 
-	str = HvkLayerNames;
+	str = NpHvkLayerNames;
 	while (*str)
 	{
 		mCbLayer.add(*str);
 		str++;
 	}
 
-	str = HvkMotionSystems;
+	str = NpHvkMotionSystems;
 	while (*str)
 	{
 		mCbMotionSystem.add(*str);
 		str++;
 	}
 
-	str = HvkQualityTypes;
+	str = NpHvkQualityTypes;
 	while (*str)
 	{
 		mCbQualityType.add(*str);
diff --git a/NifProps/NifStrings.h b/NifProps/NifStrings.h
index 9e232b5..a3e5cd4 100755
--- a/NifProps/NifStrings.h
+++ b/NifProps/NifStrings.h
@@ -1,4 +1,4 @@
-static const char *HvkMaterialNames[] =
+static const char *NpHvkMaterialNames[] =
 {
 	"Stone",
 	"Cloth",
@@ -34,7 +34,7 @@ static const char *HvkMaterialNames[] =
 	NULL
 };
 
-static const char *HvkLayerNames[] =
+static const char *NpHvkLayerNames[] =
 {
 	"Unidentified",
 	"Static",
@@ -96,7 +96,7 @@ static const char *HvkLayerNames[] =
 	NULL
 };
 
-static const char *HvkMotionSystems[] =
+static const char *NpHvkMotionSystems[] =
 {
 	"Keyframed",
 	"Box (2)",
@@ -111,7 +111,7 @@ static const char *HvkMotionSystems[] =
 	NULL
 };
 
-static const char *HvkQualityTypes[] =
+static const char *NpHvkQualityTypes[] =
 {
 	"Moving",
 	"Fixed",
-- 
GitLab