aboutsummaryrefslogtreecommitdiff
path: root/src/configmanagerbase.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-08-09 19:25:29 +0000
committerMike Buland <eichlan@xagasoft.com>2006-08-09 19:25:29 +0000
commit3603e0707f066228267709fd40d76d8573329869 (patch)
tree215084e6ce579c34e79cbf0097bb75584dc49a4e /src/configmanagerbase.h
parent4f91790abe1b77f1a27ca46edd8143ef2d2b9fde (diff)
downloadlibbu++-3603e0707f066228267709fd40d76d8573329869.tar.gz
libbu++-3603e0707f066228267709fd40d76d8573329869.tar.bz2
libbu++-3603e0707f066228267709fd40d76d8573329869.tar.xz
libbu++-3603e0707f066228267709fd40d76d8573329869.zip
Fixed a bug in the config manager base that caused config files to never load
or work.
Diffstat (limited to '')
-rw-r--r--src/configmanagerbase.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/configmanagerbase.h b/src/configmanagerbase.h
index b60c73a..11a9a8e 100644
--- a/src/configmanagerbase.h
+++ b/src/configmanagerbase.h
@@ -12,7 +12,7 @@ public:
12 12
13public: 13public:
14 void addSearchPath( const std::string &sPath ); 14 void addSearchPath( const std::string &sPath );
15 void loadConfig( const char *lpProfile="default" ); 15 void loadConfig( const std::string &sFileName, const char *lpProfile="default" );
16 16
17private: 17private:
18 bool parseConfig( const char *lpFileName, const char *lpProfile ); 18 bool parseConfig( const char *lpFileName, const char *lpProfile );