Git: Add m_ prefix to StashGuard members

Change-Id: Ice9f33e986688e8d2c5250435a30cd7cb1ac3b28
Reviewed-by: Tobias Hunger <tobias.hunger@digia.com>
This commit is contained in:
Orgad Shaneh
2013-05-26 20:31:07 +03:00
committed by Orgad Shaneh
parent 405dbcb9ca
commit 5d558c141c
2 changed files with 35 additions and 35 deletions

View File

@@ -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;