From 3a4a61daf1c69f304e5411275d34c6836366153f Mon Sep 17 00:00:00 2001 From: justin1014 Date: Mon, 30 Sep 2002 02:08:59 +0000 Subject: [PATCH] fixed so it would compile :) git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@1220 212acab6-be3b-0410-9dea-997c60f758d6 --- Source/build.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/build.cpp b/Source/build.cpp index 968ee66a..06251a67 100644 --- a/Source/build.cpp +++ b/Source/build.cpp @@ -404,7 +404,7 @@ int CEXEBuild::add_string_main(const char *string, int process) // returns offse char *p = strchr(cp, ')'); if (p) { *p = 0; - if (build_userlangstrings->find(cp, 0, &idx) < 0) idx = -1; + if (build_userlangstrings.find(cp, 0, &idx) < 0) idx = -1; } free(cp); if (idx >= 0) return -(idx+1); @@ -426,7 +426,7 @@ int CEXEBuild::add_string_uninst(const char *string, int process) // returns off char *p = strchr(cp, ')'); if (p) { *p = 0; - if (ubuild_userlangstrings->find(cp, 0, &idx) < 0) idx = -1; + if (ubuild_userlangstrings.find(cp, 0, &idx) < 0) idx = -1; } free(cp); if (idx >= 0) return -(idx+1);