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
7f4545cb
Commit
7f4545cb
authored
May 29, 2009
by
con
Browse files
Wrong flags at one place.
parent
c49412ac
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/find/findtoolbar.cpp
View file @
7f4545cb
...
...
@@ -445,8 +445,8 @@ void FindToolBar::updateIcons()
void
FindToolBar
::
updateFlagMenus
()
{
bool
wholeOnly
=
((
m_findFlags
&
QTextDocumen
t
::
FindWholeWords
));
bool
sensitive
=
((
m_findFlags
&
QTextDocumen
t
::
FindCaseSensitively
));
bool
wholeOnly
=
((
m_findFlags
&
IFindSuppor
t
::
FindWholeWords
));
bool
sensitive
=
((
m_findFlags
&
IFindSuppor
t
::
FindCaseSensitively
));
if
(
m_wholeWordAction
->
isChecked
()
!=
wholeOnly
)
m_wholeWordAction
->
setChecked
(
wholeOnly
);
if
(
m_caseSensitiveAction
->
isChecked
()
!=
sensitive
)
...
...
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