Build fix for *NIX.

This commit is contained in:
Gunnar Beutner 2012-07-23 10:27:12 +02:00
parent 4814fed13a
commit d87c1758d5
2 changed files with 0 additions and 7 deletions

View File

@ -91,7 +91,6 @@ void Component::Load(const string& name, const ConfigObject::Ptr& config)
component->m_Name = name;
component->m_Config = config;
component->m_ModuleHandle = hModule;
try {
m_Components[name] = component;

View File

@ -56,12 +56,6 @@ private:
string m_Name;
ConfigObject::Ptr m_Config;
#ifdef _WIN32
HMODULE m_ModuleHandle;
#else /* _WIN32 */
lt_dlhandle m_ModuleHandle;
#endif /* _WIN32 */
static map<string, Component::Ptr> m_Components; /**< Components that
were loaded by the application. */
};