diff options
author | Orgad Shaneh <[email protected]> | 2013-05-26 20:31:07 +0300 |
---|---|---|
committer | Orgad Shaneh <[email protected]> | 2013-05-27 10:00:36 +0200 |
commit | 5d558c141c63f3b71151d241e8cd5fcfa3d0a1c7 (patch) | |
tree | 0f189822903216e6cbc57615042ac10c9ed30f4d /src/plugins/git/gitclient.h | |
parent | 405dbcb9cab0cd498492bd0dbd9cdae9ce0aa7a2 (diff) |
Git: Add m_ prefix to StashGuard members
Change-Id: Ice9f33e986688e8d2c5250435a30cd7cb1ac3b28
Reviewed-by: Tobias Hunger <[email protected]>
Diffstat (limited to 'src/plugins/git/gitclient.h')
-rw-r--r-- | src/plugins/git/gitclient.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/plugins/git/gitclient.h b/src/plugins/git/gitclient.h index b1b81c89b0b..1b754f3cc2c 100644 --- a/src/plugins/git/gitclient.h +++ b/src/plugins/git/gitclient.h @@ -106,19 +106,19 @@ public: void preventPop(); bool stashingFailed() const; - StashResult result() const { return stashResult; } - QString stashMessage() const { return message; } + StashResult result() const { return m_stashResult; } + QString stashMessage() const { return m_message; } private: void stashPrompt(const QString &keyword, QString *errorMessage); void executeStash(const QString &keyword, QString *errorMessage); - bool pop; - StashResult stashResult; - QString message; - QString workingDir; - GitClient *client; - StashFlag flags; + bool m_pop; + StashResult m_stashResult; + QString m_message; + QString m_workingDir; + GitClient *m_client; + StashFlag m_flags; }; static const char *stashNamePrefix; |