[sword-devel] BCPP 6.0 - unresolved linking
Jonathan Mickelson
sword-devel@crosswire.org
Fri, 02 Apr 2004 16:10:36 -0500
Troy, it bombs on this statement. I'm tracing thru the code to find the
reason.
bookmarkfrm.cpp
Line 187: bmconf = new SWConfig(((String *)tree->Data)->c_str());
I replaced this line with the following:
char *myVal;
myVal = ((String *)tree->Data)->c_str();
bmconf = new SWConfig(myVal);
and it bombs on "bmconf = new SWConfig(myVal);"
VALUES:
myVal = "./bookmarks/personal.conf"
personal = true
Any ideas?
- Jonathan