From 7aa91c0bd835d889bcf24926a5cc906d9ad05be4 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Tue, 1 Oct 2013 13:56:17 +0300 Subject: [PATCH] Fix compilation with Qt < 5.2 Change-Id: I8e8b29246274e0b358dad9f5596a64639f0255c5 Reviewed-by: Daniel Teske --- src/plugins/android/createandroidmanifestwizard.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/android/createandroidmanifestwizard.cpp b/src/plugins/android/createandroidmanifestwizard.cpp index 0a8ca50601..eeee6b4c61 100644 --- a/src/plugins/android/createandroidmanifestwizard.cpp +++ b/src/plugins/android/createandroidmanifestwizard.cpp @@ -86,7 +86,7 @@ ChooseProFilePage::ChooseProFilePage(CreateAndroidManifestWizard *wizard, const void ChooseProFilePage::nodeSelected(int index) { Q_UNUSED(index) - m_wizard->setNode(static_cast(m_comboBox->currentData().value())); + m_wizard->setNode(static_cast(m_comboBox->itemData(m_comboBox->currentIndex()).value())); } -- GitLab