diff options
author | Robert Griebl <robert.griebl@pelagicore.com> | 2014-07-31 13:10:37 (GMT) |
---|---|---|
committer | Robert Griebl <robert.griebl@pelagicore.com> | 2014-08-05 12:49:11 (GMT) |
commit | ec808b78e1b8d5cf128b3ef3e6933cb5ddd48544 (patch) | |
tree | 4f615e8188b035d306ea054edb5a6a8cde76c913 /src/dbus | |
parent | 50ffdf2b44342df33af0f653001d32f4478ae691 (diff) | |
download | Qt-ec808b78e1b8d5cf128b3ef3e6933cb5ddd48544.zip Qt-ec808b78e1b8d5cf128b3ef3e6933cb5ddd48544.tar.gz Qt-ec808b78e1b8d5cf128b3ef3e6933cb5ddd48544.tar.bz2 |
Fix at lot of QT_NO_ define guards for very tiny Qt builds.
Change-Id: If33639be245a1ad3782e1fde279371f330a988be
Reviewed-by: Paul Olav Tvete <paul.tvete@digia.com>
Diffstat (limited to 'src/dbus')
-rw-r--r-- | src/dbus/qdbusunixfiledescriptor.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/dbus/qdbusunixfiledescriptor.cpp b/src/dbus/qdbusunixfiledescriptor.cpp index 3d6d601..72455ab 100644 --- a/src/dbus/qdbusunixfiledescriptor.cpp +++ b/src/dbus/qdbusunixfiledescriptor.cpp @@ -47,6 +47,8 @@ # include <private/qcore_unix_p.h> #endif +#ifndef QT_NO_DBUS + QT_BEGIN_NAMESPACE /*! @@ -324,3 +326,5 @@ QDBusUnixFileDescriptorPrivate::~QDBusUnixFileDescriptorPrivate() #endif QT_END_NAMESPACE + +#endif // QT_NO_DBUS |