From d87c1758d5e0d00f0c580fb4aa249a0a313c033d Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Mon, 23 Jul 2012 10:27:12 +0200 Subject: [PATCH] Build fix for *NIX. --- base/component.cpp | 1 - base/component.h | 6 ------ 2 files changed, 7 deletions(-) diff --git a/base/component.cpp b/base/component.cpp index d2ebd2877..52c27b5a3 100644 --- a/base/component.cpp +++ b/base/component.cpp @@ -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; diff --git a/base/component.h b/base/component.h index e39d9dab1..a59c1faa7 100644 --- a/base/component.h +++ b/base/component.h @@ -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 m_Components; /**< Components that were loaded by the application. */ }; -- 2.40.0