From 67153b225f91b26f41ccbb28117c63dd9cf2586a Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Thu, 14 Jan 2016 17:46:59 +0200 Subject: [PATCH] Core: Fix compilation Change-Id: Icae9a1db31e887c751b3a0c71cfd93b4fa6ead98 Reviewed-by: Orgad Shaneh --- src/plugins/coreplugin/themesettingswidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/coreplugin/themesettingswidget.cpp b/src/plugins/coreplugin/themesettingswidget.cpp index 7071708241c..3e5d37bfa3b 100644 --- a/src/plugins/coreplugin/themesettingswidget.cpp +++ b/src/plugins/coreplugin/themesettingswidget.cpp @@ -156,7 +156,7 @@ void ThemeSettingsWidget::refreshThemeList() void ThemeSettingsWidget::apply() { - const int index = d->m_ui->themeComboBox->currentIndex(); + const int index = d->m_themeComboBox->currentIndex(); if (index == -1) return; const QString themeId = d->m_themeListModel->themeAt(index).id().toString();