summaryrefslogtreecommitdiffstats
path: root/src/plugins/graphicssystems/testlite/x11util.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/plugins/graphicssystems/testlite/x11util.cpp')
-rw-r--r--src/plugins/graphicssystems/testlite/x11util.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/plugins/graphicssystems/testlite/x11util.cpp b/src/plugins/graphicssystems/testlite/x11util.cpp
index e2fbd62fe5..8c0b6c1669 100644
--- a/src/plugins/graphicssystems/testlite/x11util.cpp
+++ b/src/plugins/graphicssystems/testlite/x11util.cpp
@@ -397,6 +397,24 @@ MyWindow::MyWindow(MyDisplay *display, int x, int y, int w, int h)
wmProtocolsAtom,
XA_ATOM, 32, PropModeAppend,
(unsigned char *) &wmDeleteWindowAtom, 1);
+
+
+ setWindowTitle(QLatin1String("Qt Lighthouse"));
+
+}
+
+
+void MyWindow::setWindowTitle(const QString &title)
+
+{
+ QByteArray ba = title.toLatin1(); //We're not making a general solution here...
+ XTextProperty windowName;
+ windowName.value = (unsigned char *)ba.constData();
+ windowName.encoding = XA_STRING;
+ windowName.format = 8;
+ windowName.nitems = ba.length();
+
+ XSetWMName(xd->display, window, &windowName);
}
MyWindow::~MyWindow()