diff options
| author | Stephen Kelly <steveire@gmail.com> | 2017-01-15 11:36:22 +0000 | 
|---|---|---|
| committer | Stephen Kelly <steveire@gmail.com> | 2017-01-15 11:36:22 +0000 | 
| commit | eab822e206207c51d47f0f0da109caacfbee4e2f (patch) | |
| tree | 5703bd2f4af63c5524a07829f5ebe7297b88a9f4 /src | |
| parent | e5378ff1de1892b38f2eadf377baa79ab8a7c996 (diff) | |
| download | kconfig-eab822e206207c51d47f0f0da109caacfbee4e2f.tar.gz kconfig-eab822e206207c51d47f0f0da109caacfbee4e2f.tar.bz2 | |
Add missing export decoration
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/kconfigdata.h | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/src/core/kconfigdata.h b/src/core/kconfigdata.h index 3b70c24f..4dd2fa77 100644 --- a/src/core/kconfigdata.h +++ b/src/core/kconfigdata.h @@ -23,6 +23,8 @@  #ifndef KCONFIGDATA_H  #define KCONFIGDATA_H +#include <kconfigcore_export.h> +  #include <QtCore/QByteArray>  #include <QtCore/QString>  #include <QtCore/QMap> @@ -155,7 +157,7 @@ QDebug operator<<(QDebug dbg, const KEntry &entry);   * with the group name.   * @internal   */ -class KEntryMap : public QMap<KEntryKey, KEntry> +class KCONFIGCORE_EXPORT KEntryMap : public QMap<KEntryKey, KEntry>  {  public:      enum SearchFlag { | 
