diff options
author | Orgad Shaneh <orgad.shaneh@audiocodes.com> | 2013-10-02 15:11:07 +0300 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2013-10-05 19:15:11 +0200 |
commit | c07eaa2a252a9e108155c0f14219119e6f80505f (patch) | |
tree | 4188efeb36ebe01b663af9ea11d64a1e7e217833 /src/plugins/git/commitdata.h | |
parent | 589d9c777355de26b426263190e9bd782ac69590 (diff) | |
download | qt-creator-c07eaa2a252a9e108155c0f14219119e6f80505f.tar.gz |
Git: Move hasRemotes out of panel data
It is input only, and doesn't belong to the panel
Also rename it enablePush
Change-Id: I9d5e2246ce76854a54b02e69980214dd35a402ee
Reviewed-by: Petar Perisin <petar.perisin@gmail.com>
Diffstat (limited to 'src/plugins/git/commitdata.h')
-rw-r--r-- | src/plugins/git/commitdata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/git/commitdata.h b/src/plugins/git/commitdata.h index deb5072c3d..635e24a3b9 100644 --- a/src/plugins/git/commitdata.h +++ b/src/plugins/git/commitdata.h @@ -68,7 +68,6 @@ struct GitSubmitEditorPanelData QString email; bool bypassHooks; PushAction pushAction; - bool hasRemotes; }; QDebug operator<<(QDebug d, const GitSubmitEditorPanelData &); @@ -115,6 +114,7 @@ public: QString commitEncoding; GitSubmitEditorPanelInfo panelInfo; GitSubmitEditorPanelData panelData; + bool enablePush; QList<StateFilePair> files; |