diff options
author | hjk <hjk@qt.io> | 2020-02-04 17:10:52 +0100 |
---|---|---|
committer | hjk <hjk@qt.io> | 2020-02-06 09:51:40 +0000 |
commit | fd5461b93d6d3b5b5178f9929b57bcb313ac0717 (patch) | |
tree | 9f9c01472552d92a3b874a378dd5f486e7cf2a32 /src/plugins/cpptools/stringtable.h | |
parent | 90f2f4b1dc9cffd40ab1b2e0a648799b50b7cd05 (diff) | |
download | qt-creator-fd5461b93d6d3b5b5178f9929b57bcb313ac0717.tar.gz |
CppTools: Use a normal plugin pimpl member for StringTable
Change-Id: I2804b623b7ec03f6f4375452c9a422604468aafa
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'src/plugins/cpptools/stringtable.h')
-rw-r--r-- | src/plugins/cpptools/stringtable.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/plugins/cpptools/stringtable.h b/src/plugins/cpptools/stringtable.h index fdac41f1b1..db8201ab00 100644 --- a/src/plugins/cpptools/stringtable.h +++ b/src/plugins/cpptools/stringtable.h @@ -30,8 +30,6 @@ namespace CppTools { namespace Internal { -class CppToolsPluginPrivate; - class StringTable { public: @@ -40,8 +38,8 @@ public: private: friend class CppToolsPluginPrivate; - static void initialize(); - static void destroy(); + StringTable(); + ~StringTable(); }; } // Internal |