diff -r fdbe8253b596 -r 2206bb7ddbec messagingapp/msgui/unifiedviewer/inc/unifiedviewer.h --- a/messagingapp/msgui/unifiedviewer/inc/unifiedviewer.h Tue Sep 07 13:28:39 2010 +0530 +++ b/messagingapp/msgui/unifiedviewer/inc/unifiedviewer.h Tue Sep 14 15:50:22 2010 +0530 @@ -18,15 +18,17 @@ #ifndef UNIFIED_VIEWER_H #define UNIFIED_VIEWER_H -#ifdef BUILD_UNI_VIEWER_DLL -#define UNI_VIEWER_DLL Q_DECL_EXPORT +#ifdef MSGUI_UNIT_TEST + #define UNI_VIEWER_DLL #else -#define UNI_VIEWER_DLL Q_DECL_IMPORT + #ifdef BUILD_UNI_VIEWER_DLL + #define UNI_VIEWER_DLL Q_DECL_EXPORT + #else + #define UNI_VIEWER_DLL Q_DECL_IMPORT + #endif #endif -#include #include "msgbaseview.h" - #include "convergedmessage.h" class UniViewerFeeder; @@ -58,7 +60,7 @@ /** * Populates the content on the widget */ - void populateContent(const qint32 messageId, bool update, int msgCount, qint64 conversationId=-1); + void populateContent(const qint32 messageId, bool update, int msgCount, qint64 conversationId = -1); /** * Event handler @@ -158,7 +160,7 @@ * Owned */ UniContentsWidget* mContentsWidget; - + /** * Conversation ID */ @@ -173,12 +175,18 @@ * Message id */ qint32 mMessageId; - + /** * Message count */ int mMsgCount; +#ifdef MSGUI_UNIT_TEST + /** + * Unit Testing + */ + friend class TestUnifiedViewer; +#endif }; #endif