renamed *Manager classes

This commit is contained in:
fourtf
2018-06-28 19:51:07 +02:00
parent 2df142bd50
commit 8ced5a1e25
30 changed files with 131 additions and 131 deletions
+4 -4
View File
@@ -5,13 +5,13 @@
namespace chatterino {
class PathManager
class Paths
{
PathManager();
Paths();
public:
static void initInstance();
static PathManager *getInstance();
static Paths *getInstance();
// Root directory for the configuration files. %APPDATA%/chatterino or ExecutablePath for
// portable mode
@@ -36,7 +36,7 @@ public:
bool isPortable();
private:
static PathManager *instance;
static Paths *instance;
boost::optional<bool> portable;
void initAppFilePathHash();