Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
63fb8ffc
Commit
63fb8ffc
authored
Feb 23, 2011
by
dt
Browse files
Replace QTC_ASSERT with normal check
Optionspages are called even if they weren't shown.
parent
f33fc211
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/toolchainoptionspage.cpp
View file @
63fb8ffc
...
...
@@ -532,8 +532,8 @@ QWidget *ToolChainOptionsPage::createPage(QWidget *parent)
void
ToolChainOptionsPage
::
apply
()
{
QTC_ASSERT
(
m_model
,
return
;
)
m_model
->
apply
();
if
(
m_model
)
m_model
->
apply
();
}
void
ToolChainOptionsPage
::
finish
()
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment