Skip to content
Snippets Groups Projects
Commit 712d6df4 authored by David Kaspar's avatar David Kaspar
Browse files

Qnx: Fix for compilation error in c4717944f1c4de116e9074b7a38cd7ff29b1b16d


The QComboBox::setCurrentText() function is in Qt5 only.
Using equivalent QComboBox::setEditText() instead.

Change-Id: I5d45cc93bbfcaa7510c5192312c74f5f172f3a7d
Reviewed-by: default avatarDavid Kaspar <dkaspar@blackberry.com>
Reviewed-by: default avatarhjk <hjk121@nokiamail.com>
parent fc1e1d17
No related branches found
No related tags found
No related merge requests found
......@@ -242,7 +242,7 @@ void BlackBerryDeviceConfigurationWidget::populateDebugTokenCombo(const QString&
{
ui->debugToken->clear();
ui->debugToken->addItems(m_utils.debugTokens());
ui->debugToken->setCurrentText(current);
ui->debugToken->setEditText(current);
}
void BlackBerryDeviceConfigurationWidget::updateDebugTokenCombo()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment