diff options
author | nyamatongwe <unknown> | 2009-07-21 11:35:31 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2009-07-21 11:35:31 +0000 |
commit | 9cd525897c7e302a8a21cfffd54d2e3646c4cbc0 (patch) | |
tree | 8bb9d4cc85021f0b8c7b0ee00cdb075c838723d5 /include/PropSet.h | |
parent | b69ac35c0bb267409f67178ce31f3a67f6dbf4e6 (diff) | |
download | scintilla-mirror-9cd525897c7e302a8a21cfffd54d2e3646c4cbc0.tar.gz |
Added virtual destructor to avoid compiler warning.
Diffstat (limited to 'include/PropSet.h')
-rw-r--r-- | include/PropSet.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/PropSet.h b/include/PropSet.h index bb24e2ac4..c95202174 100644 --- a/include/PropSet.h +++ b/include/PropSet.h @@ -16,6 +16,7 @@ class PropertyGet { public: virtual char *ToString() const=0; // Caller must delete[] the return value virtual int GetInt(const char *key, int defaultValue=0) const=0; + virtual ~PropertyGet() {} }; #ifdef SCI_NAMESPACE |