aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2009-07-21 11:35:31 +0000
committernyamatongwe <unknown>2009-07-21 11:35:31 +0000
commit9cd525897c7e302a8a21cfffd54d2e3646c4cbc0 (patch)
tree8bb9d4cc85021f0b8c7b0ee00cdb075c838723d5
parentb69ac35c0bb267409f67178ce31f3a67f6dbf4e6 (diff)
downloadscintilla-mirror-9cd525897c7e302a8a21cfffd54d2e3646c4cbc0.tar.gz
Added virtual destructor to avoid compiler warning.
-rw-r--r--include/PropSet.h1
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