summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordt <qtc-commiter@nokia.com>2009-02-11 15:24:01 +0100
committerdt <qtc-commiter@nokia.com>2009-02-11 15:24:01 +0100
commit20939198fa9060bd1b487a2136ee030c6d7d0f68 (patch)
treedcd6c13c01ba2192f8fae8a7b9108eb1521333f5
parentcc82a0c7ac547f5adf4b0404ea0f1eb2ce0e3ab8 (diff)
downloadqt-creator-20939198fa9060bd1b487a2136ee030c6d7d0f68.tar.gz
Fixes: Missing export macro.
-rw-r--r--src/plugins/projectexplorer/cesdkhandler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/cesdkhandler.h b/src/plugins/projectexplorer/cesdkhandler.h
index 3fdb1382c9..db346ea926 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();