diff options
author | Konstantin Tokarev <[email protected]> | 2012-05-07 12:56:22 +0400 |
---|---|---|
committer | Eike Ziller <[email protected]> | 2012-05-07 14:00:11 +0200 |
commit | 3872597d091427102e368570cf7c28bc4830fd0d (patch) | |
tree | 62151a386d8819d4de728163be5ae83f4557ec2c /src/plugins/find/findtoolwindow.h | |
parent | 82170f0050b4715b28611aabe006a28b617a594e (diff) |
Restore state of find flags in FindToolWindow.
There was an issue with checkboxes "Case Sensitive", "Whole Word", and
"Regular Expression": their state was properly saved in
FindPluginPrivate::m_findFlags, but was not properly restored in GUI of
FindToolWindow on the next run of Qt Creator. This patch fixes this issue.
Change-Id: I31e1e14a4117fbf4f4d17e82b3fa2b90973be339
Reviewed-by: Konstantin Tokarev <[email protected]>
Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/find/findtoolwindow.h')
-rw-r--r-- | src/plugins/find/findtoolwindow.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/plugins/find/findtoolwindow.h b/src/plugins/find/findtoolwindow.h index 928bbd0c56d..f2990366400 100644 --- a/src/plugins/find/findtoolwindow.h +++ b/src/plugins/find/findtoolwindow.h @@ -70,6 +70,7 @@ private slots: void replace(); void setCurrentFilter(int index); void updateButtonStates(); + void updateFindFlags(); private: void acceptAndGetParameters(QString *term, IFindFilter **filter); |