Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFelix Geyer <debfx@fobos.de>2013-03-29 19:31:26 +0400
committerFelix Geyer <debfx@fobos.de>2013-03-29 19:31:26 +0400
commit98372f9df88ba6cb4773f8d8a14c66f343c90814 (patch)
treec544daa11b6515316a08f3f3c739855c142c7e1e
parent5550d7af0d08a2102d79bbf6580904e0893daa34 (diff)
Drop unnecessary dllimport/dllexport statements in QtIOCompressor.2.0-alpha4
-rw-r--r--src/streams/qtiocompressor.h18
1 files changed, 1 insertions, 17 deletions
diff --git a/src/streams/qtiocompressor.h b/src/streams/qtiocompressor.h
index d8fd383d5..f325bb663 100644
--- a/src/streams/qtiocompressor.h
+++ b/src/streams/qtiocompressor.h
@@ -49,24 +49,8 @@
#include <QtCore/QIODevice>
-#if defined(Q_OS_WIN)
-# if !defined(QT_QTIOCOMPRESSOR_EXPORT) && !defined(QT_QTIOCOMPRESSOR_IMPORT)
-# define QT_QTIOCOMPRESSOR_EXPORT
-# elif defined(QT_QTIOCOMPRESSOR_IMPORT)
-# if defined(QT_QTIOCOMPRESSOR_EXPORT)
-# undef QT_QTIOCOMPRESSOR_EXPORT
-# endif
-# define QT_QTIOCOMPRESSOR_EXPORT __declspec(dllimport)
-# elif defined(QT_QTIOCOMPRESSOR_EXPORT)
-# undef QT_QTIOCOMPRESSOR_EXPORT
-# define QT_QTIOCOMPRESSOR_EXPORT __declspec(dllexport)
-# endif
-#else
-# define QT_QTIOCOMPRESSOR_EXPORT
-#endif
-
class QtIOCompressorPrivate;
-class QT_QTIOCOMPRESSOR_EXPORT QtIOCompressor : public QIODevice
+class QtIOCompressor : public QIODevice
{
Q_OBJECT
public: