summaryrefslogtreecommitdiffstats
path: root/examples/qtmail
diff options
context:
space:
mode:
authorRobin Burchell <robin.burchell@viroteck.net>2015-08-27 16:55:41 +0200
committerRobin Burchell <robin.burchell@viroteck.net>2015-08-28 08:56:07 +0000
commita95e0ba503a4828b67d6de594db20df1bdafb1a9 (patch)
tree2022df4b46b66067b5f361e4c759bfe881e87dce /examples/qtmail
parent3681f6595ca1ddc03e6fabbe65399ffdee08e7e4 (diff)
qtmail: Don't export some classes that are only used inside the example.
These were previously part of the libraries, but removed to be example-only in daa2a0ad8092b3552db8a81a1d076b5a9de84d61. This fixes yet another Windows build failure. Change-Id: I2449b08ecd5d286c088dab88b368019a91a03a2b Reviewed-by: Simon Hausmann <simon.hausmann@theqtcompany.com>
Diffstat (limited to 'examples/qtmail')
-rw-r--r--examples/qtmail/qmailcomposer.h4
-rw-r--r--examples/qtmail/qmailviewer.h4
2 files changed, 4 insertions, 4 deletions
diff --git a/examples/qtmail/qmailcomposer.h b/examples/qtmail/qmailcomposer.h
index d6be4a48..b8edd159 100644
--- a/examples/qtmail/qmailcomposer.h
+++ b/examples/qtmail/qmailcomposer.h
@@ -49,7 +49,7 @@ class QMenu;
QT_END_NAMESPACE
-class QMFUTIL_EXPORT QMailComposerInterface : public QWidget
+class QMailComposerInterface : public QWidget
{
Q_OBJECT
@@ -95,7 +95,7 @@ signals:
void statusChanged(const QString& status);
};
-class QMFUTIL_EXPORT QMailComposerFactory
+class QMailComposerFactory
{
public:
// Yield the key for each interface supporting the supplied type
diff --git a/examples/qtmail/qmailviewer.h b/examples/qtmail/qmailviewer.h
index 80e2461c..9209849d 100644
--- a/examples/qtmail/qmailviewer.h
+++ b/examples/qtmail/qmailviewer.h
@@ -51,7 +51,7 @@ QT_END_NAMESPACE
class QMailViewerInterface;
-class QMFUTIL_EXPORT QMailViewerFactory
+class QMailViewerFactory
{
public:
enum PresentationType
@@ -74,7 +74,7 @@ public:
};
// The interface for objects able to view mail messages
-class QMFUTIL_EXPORT QMailViewerInterface : public QObject
+class QMailViewerInterface : public QObject
{
Q_OBJECT