diff options
author | Thiago Macieira <thiago.macieira@nokia.com> | 2009-12-10 09:04:36 (GMT) |
---|---|---|
committer | Thiago Macieira <thiago.macieira@nokia.com> | 2009-12-10 09:04:36 (GMT) |
commit | c73d4f8b55dbb79b7a2df38d167a7c5ffd4520ce (patch) | |
tree | bf2c66ccf011cfb43645c11fbe0fe95abf1c3540 /src/dbus/qdbusinterface_p.h | |
parent | bdb485519d957bb551d5eeae8a866df45a59c647 (diff) | |
download | Qt-c73d4f8b55dbb79b7a2df38d167a7c5ffd4520ce.zip Qt-c73d4f8b55dbb79b7a2df38d167a7c5ffd4520ce.tar.gz Qt-c73d4f8b55dbb79b7a2df38d167a7c5ffd4520ce.tar.bz2 |
Fix compilation: private headers must be #included with ""
The reason is that the private headers don't exist in any of the -I
lines, so they need to be found by the preprocessor relative to the
source file, which means "".
Task-number: QTBUG-6665
Reviewed-by: Trust Me
Diffstat (limited to 'src/dbus/qdbusinterface_p.h')
-rw-r--r-- | src/dbus/qdbusinterface_p.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dbus/qdbusinterface_p.h b/src/dbus/qdbusinterface_p.h index 3d11af1..a601608 100644 --- a/src/dbus/qdbusinterface_p.h +++ b/src/dbus/qdbusinterface_p.h @@ -54,8 +54,8 @@ #ifndef QDBUSINTERFACEPRIVATE_H #define QDBUSINTERFACEPRIVATE_H -#include <qdbusabstractinterface_p.h> -#include <qdbusmetaobject_p.h> +#include "qdbusabstractinterface_p.h" +#include "qdbusmetaobject_p.h" #include <qdbusinterface.h> QT_BEGIN_NAMESPACE |