diff options
author | Jeremy Katz <jeremy.katz@nokia.com> | 2009-10-02 10:53:47 (GMT) |
---|---|---|
committer | Jeremy Katz <jeremy.katz@nokia.com> | 2009-10-02 10:58:17 (GMT) |
commit | 1eafe0ea2ecc3bce733d574f39bc26652baaec38 (patch) | |
tree | 6f66f6798f84183c7743e517199579a6eb1b0732 /src/gui/kernel/qapplication_qws.cpp | |
parent | a586b10bfbf2540e282568b99a4facefa4f24853 (diff) | |
download | Qt-1eafe0ea2ecc3bce733d574f39bc26652baaec38.zip Qt-1eafe0ea2ecc3bce733d574f39bc26652baaec38.tar.gz Qt-1eafe0ea2ecc3bce733d574f39bc26652baaec38.tar.bz2 |
make private qws/qvfb data directory non-default, default to non-user specific
This turns the changes in 072e748adbdab1d51b240b9983ce82b213b66f18 off
by default. Define QT_PRIVATE_QWS to turn them on. This must be done for
both qvfb (X11 build) and libQtGui (QWS build). Failure to do so will result
in an inability for applications to communicate with the server.
Task-number: QTBUG-1711
Reviewed-by: Paul
Diffstat (limited to 'src/gui/kernel/qapplication_qws.cpp')
-rw-r--r-- | src/gui/kernel/qapplication_qws.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kernel/qapplication_qws.cpp b/src/gui/kernel/qapplication_qws.cpp index 01c64f1..634f23a 100644 --- a/src/gui/kernel/qapplication_qws.cpp +++ b/src/gui/kernel/qapplication_qws.cpp @@ -232,7 +232,7 @@ QString qws_dataDir() // Get the filename of the pipe Qt for Embedded Linux uses for server/client comms Q_GUI_EXPORT QString qws_qtePipeFilename() { - return (qws_dataDir().append(QTE_PIPE)); + return QTE_PIPE(qws_display_id); } static void setMaxWindowRect(const QRect &rect) |