diff options
author | Tobias Hunger <tobias.hunger@theqtcompany.com> | 2015-09-16 14:54:58 +0200 |
---|---|---|
committer | Orgad Shaneh <orgads@gmail.com> | 2015-09-16 13:52:58 +0000 |
commit | 628a0fcaa7989b084975fd3c456a1fee46ac6f79 (patch) | |
tree | 9881148cd814ace6da932cec2cda8434e3e14946 /src/plugins/vcsbase/vcsbaseplugin.cpp | |
parent | 41feefd670d8160f070f7a408e306e1965134527 (diff) | |
download | qt-creator-628a0fcaa7989b084975fd3c456a1fee46ac6f79.tar.gz |
VcsBase: Turn State into a class
Change-Id: I1e0a9e6f4468ad29b70dc1fd78310ccb6a2133f3
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/vcsbase/vcsbaseplugin.cpp')
-rw-r--r-- | src/plugins/vcsbase/vcsbaseplugin.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/plugins/vcsbase/vcsbaseplugin.cpp b/src/plugins/vcsbase/vcsbaseplugin.cpp index 0e8910ada9..8e9816c32d 100644 --- a/src/plugins/vcsbase/vcsbaseplugin.cpp +++ b/src/plugins/vcsbase/vcsbaseplugin.cpp @@ -91,8 +91,9 @@ namespace Internal { Aggregated in the QSharedData of VcsBase::VcsBasePluginState. */ -struct State +class State { +public: void clearFile(); void clearPatchFile(); void clearProject(); |