forked from qt-creator/qt-creator
Use new static ICore interface.
Change-Id: I9b690d9b150c8d162b15370f9f8986267c9128f1 Reviewed-by: Daniel Teske <daniel.teske@nokia.com>
This commit is contained in:
@@ -180,7 +180,7 @@ void CommonOptionsPage::apply()
|
||||
{
|
||||
QTC_ASSERT(!m_widget.isNull() && !m_group.isNull(), return; )
|
||||
|
||||
QSettings *settings = ICore::instance()->settings();
|
||||
QSettings *settings = ICore::settings();
|
||||
m_group->apply(settings);
|
||||
|
||||
const GlobalDebuggerOptions newGlobalOptions = m_widget->globalOptions();
|
||||
@@ -245,7 +245,7 @@ QIcon DebuggingHelperOptionPage::categoryIcon() const
|
||||
|
||||
void DebuggingHelperOptionPage::apply()
|
||||
{
|
||||
m_group.apply(ICore::instance()->settings());
|
||||
m_group.apply(ICore::settings());
|
||||
}
|
||||
|
||||
void DebuggingHelperOptionPage::finish()
|
||||
|
||||
Reference in New Issue
Block a user