diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2019-03-17 08:31:42 +0200 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2019-03-18 08:37:51 +0000 |
commit | feb2db61fcd8d02a03da9293f59c9a45fe326859 (patch) | |
tree | d0e934be7a400c44ed07eed5cba19206d1f03dbe /src/plugins/git/gitgrep.h | |
parent | d4565be6557fca844dcf4bf427e0ff9c0838df50 (diff) | |
download | qt-creator-feb2db61fcd8d02a03da9293f59c9a45fe326859.tar.gz |
Git: Support non-recursive grep
Change-Id: Ib38239e28e8b24d993015e5568df02fe2a67f0e8
Reviewed-by: André Hartmann <aha_1980@gmx.de>
Diffstat (limited to 'src/plugins/git/gitgrep.h')
-rw-r--r-- | src/plugins/git/gitgrep.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/git/gitgrep.h b/src/plugins/git/gitgrep.h index af7a40ca30..1e4f81ceed 100644 --- a/src/plugins/git/gitgrep.h +++ b/src/plugins/git/gitgrep.h @@ -29,6 +29,8 @@ #include <QCoreApplication> +QT_FORWARD_DECLARE_CLASS(QCheckBox); + namespace Utils { class FancyLineEdit; } namespace Git { @@ -56,6 +58,7 @@ public: private: QWidget *m_widget; Utils::FancyLineEdit *m_treeLineEdit; + QCheckBox *m_recurseSubmodules = nullptr; }; } // namespace Internal |