diff options
author | Rohan McGovern <rohan.mcgovern@nokia.com> | 2010-03-01 01:12:49 (GMT) |
---|---|---|
committer | Rohan McGovern <rohan.mcgovern@nokia.com> | 2010-03-01 03:07:51 (GMT) |
commit | b1e097af8c0537794a64cfacd23848f8a2a7f0ca (patch) | |
tree | 1aee42a420ab4efe786bc759aabc9fc356e8ea66 /src/declarative/graphicsitems/qdeclarativescalegrid_p_p.h | |
parent | 6174f91cc2a8a53c14d3b2f4eccc62f9170699c8 (diff) | |
download | Qt-b1e097af8c0537794a64cfacd23848f8a2a7f0ca.zip Qt-b1e097af8c0537794a64cfacd23848f8a2a7f0ca.tar.gz Qt-b1e097af8c0537794a64cfacd23848f8a2a7f0ca.tar.bz2 |
Fixed private header include style to work when headers are installed.
Private headers should include other private headers by:
#include <private/qfoo_p.h>
Using a relative path works during the build, but does not work when
building other projects which attempt to use the installed private
headers (e.g. unit tests for private classes).
Diffstat (limited to 'src/declarative/graphicsitems/qdeclarativescalegrid_p_p.h')
-rw-r--r-- | src/declarative/graphicsitems/qdeclarativescalegrid_p_p.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/declarative/graphicsitems/qdeclarativescalegrid_p_p.h b/src/declarative/graphicsitems/qdeclarativescalegrid_p_p.h index 92b3f91..fbf9040 100644 --- a/src/declarative/graphicsitems/qdeclarativescalegrid_p_p.h +++ b/src/declarative/graphicsitems/qdeclarativescalegrid_p_p.h @@ -44,7 +44,7 @@ #include "qdeclarativeborderimage_p.h" -#include "../util/qdeclarativepixmapcache_p.h" +#include <private/qdeclarativepixmapcache_p.h> #include <qdeclarative.h> #include <QtCore/QString> |