Skip to content
GitLab
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
286d8091
Commit
286d8091
authored
May 06, 2009
by
con
Browse files
Fix the crash fix
d03b5714
.
parent
62e370ae
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/find/findtoolwindow.cpp
View file @
286d8091
...
...
@@ -136,7 +136,7 @@ void FindToolWindow::writeSettings()
{
QSettings
*
settings
=
Core
::
ICore
::
instance
()
->
settings
();
settings
->
beginGroup
(
"Find"
);
settings
->
setValue
(
"CurrentFilter"
,
m_currentFilter
?
0
:
m_currentFilter
->
id
());
settings
->
setValue
(
"CurrentFilter"
,
m_currentFilter
?
m_currentFilter
->
id
()
:
0
);
foreach
(
IFindFilter
*
filter
,
m_filters
)
filter
->
writeSettings
(
settings
);
settings
->
endGroup
();
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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