Git: Use class instead of struct

This commit is contained in:
Tobias Hunger
2010-10-29 14:13:44 +02:00
parent 0bea245745
commit 9dd9475e84
2 changed files with 3 additions and 2 deletions

View File

@@ -65,7 +65,7 @@ class GitOutputWindow;
class GitCommand;
struct CommitData;
struct GitSubmitEditorPanelData;
struct Stash;
class Stash;
class GitClient : public QObject
{

View File

@@ -40,7 +40,8 @@ QT_END_NAMESPACE
namespace Git {
namespace Internal {
struct Stash {
class Stash {
public:
void clear();
bool parseStashLine(const QString &l);