summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorleo2006-01-29 23:37:32 +0000
committerleo2006-01-29 23:37:32 +0000
commit0b872fb3594ce4c284066d138922332e3a7f02d7 (patch)
treea29481498d0281b8a99024324655b3ba9c92ac91
parent148fe35dcc828fba1ab24afffd85878f0d468171 (diff)
Removed unused variable.
git-svn-id: http://svn.leocad.org/trunk@464 c7d43263-9d01-0410-8a33-9dba5d9f93d6
-rw-r--r--common/project.cpp2
-rw-r--r--common/project.h1
2 files changed, 0 insertions, 3 deletions
diff --git a/common/project.cpp b/common/project.cpp
index 58460cb..23c487e 100644
--- a/common/project.cpp
+++ b/common/project.cpp
@@ -156,8 +156,6 @@ bool Project::Initialize(int argc, char *argv[], char* binpath, char* libpath)
char *env_path;
bool loaded = false;
- strcpy (m_AppPath, binpath);
-
// check if there's an environment variable for the piece library
env_path = getenv ("LEOCAD_LIB");
if (env_path != NULL)
diff --git a/common/project.h b/common/project.h
index 00c2091..ade05d0 100644
--- a/common/project.h
+++ b/common/project.h
@@ -138,7 +138,6 @@ protected:
char m_strComments[256];
// Piece library
- char m_AppPath[LC_MAXPATH]; // path to the LeoCAD executable
TexFont* m_pScreenFont;
PiecesLibrary* m_pLibrary;