diff options
author | Liang Qi <liang.qi@qt.io> | 2016-08-01 11:01:44 +0200 |
---|---|---|
committer | Liang Qi <liang.qi@qt.io> | 2016-08-02 03:54:56 +0200 |
commit | cb72077e562a5a53e52f7ac94b0c3c26320c6242 (patch) | |
tree | 24327b6aa3234e1b3d0865204a455a0ebb3e3cb8 /src/qtdiag/qtdiag.cpp | |
parent | e2bb989e237da8479a2dca647e3420861ad526e2 (diff) | |
parent | bda7ece99a8162118a91e9f475c149be39846ecd (diff) | |
download | qttools-cb72077e562a5a53e52f7ac94b0c3c26320c6242.tar.gz |
Merge remote-tracking branch 'origin/5.6' into 5.7
Conflicts:
src/designer/src/designer/qdesigner.cpp
One side changed Q_OS_MAC -> Q_OS_MACOS;
the other changed it to Q_OS_OSX and combined with Q_OS_WIN.
Kept the latter.
tests/auto/linguist/lupdate/testdata/good/parsecpp/project.ts.result
One side added some XML next to where another made a local change.
Change-Id: I812b55fbaccc85baa9856aedf90f9258428dfcab
Diffstat (limited to 'src/qtdiag/qtdiag.cpp')
-rw-r--r-- | src/qtdiag/qtdiag.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qtdiag/qtdiag.cpp b/src/qtdiag/qtdiag.cpp index b0914c4f6..d12dd691e 100644 --- a/src/qtdiag/qtdiag.cpp +++ b/src/qtdiag/qtdiag.cpp @@ -89,7 +89,7 @@ QTextStream &operator<<(QTextStream &str, const QDpi &d) QTextStream &operator<<(QTextStream &str, const QRect &r) { - str << r.size() << '+' << r.x() << '+' << r.y(); + str << r.size() << forcesign << r.x() << r.y() << noforcesign; return str; } |