aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2009-07-21 11:35:31 +0000
committernyamatongwe <devnull@localhost>2009-07-21 11:35:31 +0000
commitc6a54ce0ce22fece76c96c214f6640d657d56103 (patch)
tree8bb9d4cc85021f0b8c7b0ee00cdb075c838723d5
parent000e47ccdbd6f627b39cf919e1ed31593bb79391 (diff)
downloadscintilla-mirror-c6a54ce0ce22fece76c96c214f6640d657d56103.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