From 20939198fa9060bd1b487a2136ee030c6d7d0f68 Mon Sep 17 00:00:00 2001 From: dt Date: Wed, 11 Feb 2009 15:24:01 +0100 Subject: [PATCH] Fixes: Missing export macro. --- src/plugins/projectexplorer/cesdkhandler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/projectexplorer/cesdkhandler.h b/src/plugins/projectexplorer/cesdkhandler.h index 3fdb1382c99..db346ea926e 100644 --- a/src/plugins/projectexplorer/cesdkhandler.h +++ b/src/plugins/projectexplorer/cesdkhandler.h @@ -44,7 +44,7 @@ namespace ProjectExplorer { -class CeSdkInfo +class PROJECTEXPLORER_EXPORT CeSdkInfo { public: CeSdkInfo(); @@ -76,7 +76,7 @@ inline int CeSdkInfo::majorVersion() { return m_major; } inline int CeSdkInfo::minorVersion() { return m_minor; } inline bool CeSdkInfo::isSupported() { return m_major >= 5; } -class CeSdkHandler +class PROJECTEXPLORER_EXPORT CeSdkHandler { public: CeSdkHandler();