summaryrefslogtreecommitdiffstats
path: root/src/localesettings
diff options
context:
space:
mode:
Diffstat (limited to 'src/localesettings')
-rw-r--r--src/localesettings/localefiltermodel.h5
-rw-r--r--src/localesettings/localemodel.h5
-rw-r--r--src/localesettings/systemlocale.h4
-rw-r--r--src/localesettings/systemlocale_p.h11
4 files changed, 25 insertions, 0 deletions
diff --git a/src/localesettings/localefiltermodel.h b/src/localesettings/localefiltermodel.h
index 6c839e4..3e768ea 100644
--- a/src/localesettings/localefiltermodel.h
+++ b/src/localesettings/localefiltermodel.h
@@ -29,8 +29,11 @@
#ifndef LOCALEFILTERMODEL_H
#define LOCALEFILTERMODEL_H
+
#include <QSortFilterProxyModel>
+QT_BEGIN_NAMESPACE
+
class Q_DECL_EXPORT LocaleFilterModel : public QSortFilterProxyModel
{
Q_OBJECT
@@ -49,4 +52,6 @@ private:
};
+QT_END_NAMESPACE
+
#endif // LOCALEFILTERMODEL_H
diff --git a/src/localesettings/localemodel.h b/src/localesettings/localemodel.h
index 4fb00a0..2dcbe87 100644
--- a/src/localesettings/localemodel.h
+++ b/src/localesettings/localemodel.h
@@ -34,6 +34,8 @@
#include <QLocale>
#include <QMutex>
+QT_BEGIN_NAMESPACE
+
class LocaleItem : public QObject
{
Q_OBJECT
@@ -85,4 +87,7 @@ private:
QList<LocaleItem*> m_items;
QHash<int, QByteArray> m_roleNames;
};
+
+QT_END_NAMESPACE
+
#endif // LOCALEMODEL_H
diff --git a/src/localesettings/systemlocale.h b/src/localesettings/systemlocale.h
index 075d397..b10c5a1 100644
--- a/src/localesettings/systemlocale.h
+++ b/src/localesettings/systemlocale.h
@@ -31,6 +31,8 @@
#include <QObject>
+QT_BEGIN_NAMESPACE
+
class SystemLocalePrivate;
class Q_DECL_EXPORT SystemLocale : public QObject
@@ -52,4 +54,6 @@ protected:
Q_DECLARE_PRIVATE(SystemLocale)
};
+QT_END_NAMESPACE
+
#endif // LOCALE_H
diff --git a/src/localesettings/systemlocale_p.h b/src/localesettings/systemlocale_p.h
index 761c5cd..96af3c1 100644
--- a/src/localesettings/systemlocale_p.h
+++ b/src/localesettings/systemlocale_p.h
@@ -29,6 +29,17 @@
#ifndef LOCALE_P_H
#define LOCALE_P_H
+//
+// W A R N I N G
+// -------------
+//
+// This file is not part of the Qt API. It exists for the convenience
+// of other Qt classes. This header file may change from version to
+// version without notice, or even be removed.
+//
+// We mean it.
+//
+
#include "systemlocale.h"
#include "locale_interface.h"