summaryrefslogtreecommitdiffstats
path: root/src/plugins/qnx/common/windowgrabber.cpp
diff options
context:
space:
mode:
authorRafael Roquetto <rafael.roquetto.qnx@kdab.com>2015-02-12 08:04:11 -0200
committerYoann Lopes <yoann.lopes@theqtcompany.com>2015-02-18 15:44:42 +0000
commite5ffc6a876631bf27feee793734209271db82bd9 (patch)
treeb8b8218bcdf0fedcf963d208f03e86e9afd41f3d /src/plugins/qnx/common/windowgrabber.cpp
parent178c0401685a56541995ca1ac9b5f6a4b543626d (diff)
Remove BlackBerry PlayBook support.
Change-Id: I21f9c21bd3badd30f3a989ce3412c9ad03f5f21d Reviewed-by: Bernd Weimer <bernd.weimer@pelagicore.com> Reviewed-by: Thomas McGuire <thomas.mcguire@kdab.com>
Diffstat (limited to 'src/plugins/qnx/common/windowgrabber.cpp')
-rw-r--r--src/plugins/qnx/common/windowgrabber.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/plugins/qnx/common/windowgrabber.cpp b/src/plugins/qnx/common/windowgrabber.cpp
index b8b6b3220..51ce0dbf4 100644
--- a/src/plugins/qnx/common/windowgrabber.cpp
+++ b/src/plugins/qnx/common/windowgrabber.cpp
@@ -127,30 +127,6 @@ void WindowGrabber::start()
int result = 0;
-#ifdef Q_OS_BLACKBERRY_TABLET
-
- // HACK: On the Playbook, screen_read_window() will fail for invisible windows.
- // To workaround this, make the window visible again, but set a global
- // alpha of less than 255. The global alpha makes the window completely invisible
- // (due to a bug?), but screen_read_window() will work again.
-
- errno = 0;
- int val = 200; // anything less than 255
- result = screen_set_window_property_iv(m_window, SCREEN_PROPERTY_GLOBAL_ALPHA, &val);
- if (result != 0) {
- qWarning() << "WindowGrabber: unable to set global alpha:" << strerror(errno);
- return;
- }
-
- errno = 0;
- val = 1;
- result = screen_set_window_property_iv(m_window, SCREEN_PROPERTY_VISIBLE, &val);
- if (result != 0) {
- qWarning() << "WindowGrabber: unable to make window visible:" << strerror(errno);
- return;
- }
-#endif
-
result = screen_create_context(&m_screenContext, SCREEN_APPLICATION_CONTEXT);
if (result != 0) {
qWarning() << "WindowGrabber: cannot create screen context:" << strerror(errno);