diff options
author | Fabian Bumberger <fbumberger@rim.com> | 2012-11-15 12:16:23 +0100 |
---|---|---|
committer | The Qt Project <gerrit-noreply@qt-project.org> | 2012-11-16 13:10:40 +0100 |
commit | dd95ad45ad228cebd5c067a60859b45e569dca5f (patch) | |
tree | 1d572748c1dd9d5e0da1ebcb3d6802fa45a9f488 /src/plugins/platforms | |
parent | 62d159e977b137402da17a0eb3866af958dc4fca (diff) | |
download | qt4-tools-dd95ad45ad228cebd5c067a60859b45e569dca5f.tar.gz |
Blackberry fixed crash when plugging in a secondary display.
This bug is only in the Qt4 version of the plugin. In Qt5 attaching a screen works just fine.
Change-Id: I45ebc51c6da9999e7d2e4f453379fbc18dd6f857
Reviewed-by: James Turner <james.turner@kdab.com>
Reviewed-by: Sean Harmer <sean.harmer@kdab.com>
Diffstat (limited to 'src/plugins/platforms')
-rw-r--r-- | src/plugins/platforms/blackberry/qbbintegration.cpp | 6 | ||||
-rw-r--r-- | src/plugins/platforms/blackberry/qbbintegration.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/plugins/platforms/blackberry/qbbintegration.cpp b/src/plugins/platforms/blackberry/qbbintegration.cpp index e329bbed82..51374313a4 100644 --- a/src/plugins/platforms/blackberry/qbbintegration.cpp +++ b/src/plugins/platforms/blackberry/qbbintegration.cpp @@ -361,13 +361,13 @@ void QBBIntegration::createDisplays() if (!isAttached) continue; - createDisplay(displays[i], i == 0); + createDisplay(displays[i], i); } // of displays iteration } -void QBBIntegration::createDisplay(screen_display_t display, bool isPrimary) +void QBBIntegration::createDisplay(screen_display_t display, int screenIndex) { - QBBScreen *screen = new QBBScreen(mContext, display, isPrimary); + QBBScreen *screen = new QBBScreen(mContext, display, screenIndex); mScreens.append(screen); QObject::connect(mScreenEventHandler, SIGNAL(newWindowCreated(screen_window_t)), diff --git a/src/plugins/platforms/blackberry/qbbintegration.h b/src/plugins/platforms/blackberry/qbbintegration.h index b52495096d..921695a307 100644 --- a/src/plugins/platforms/blackberry/qbbintegration.h +++ b/src/plugins/platforms/blackberry/qbbintegration.h @@ -88,7 +88,7 @@ public: QBBScreen *screenForNative(screen_display_t screen) const; - void createDisplay(screen_display_t display, bool isPrimary); + void createDisplay(screen_display_t display, int screenIndex); void removeDisplay(QBBScreen *screen); private: QBBScreen *primaryDisplay() const; |