diff options
author | nyamatongwe <unknown> | 2011-07-11 11:22:35 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-07-11 11:22:35 +1000 |
commit | 6608047ba5e8f9e88aaa5a99dfcac3c030471f77 (patch) | |
tree | e95f33f403659022b255f3857357a62c7708c780 | |
parent | 0cf1225ab37cfb1426f47018c0c1e9e615ee1eef (diff) | |
download | scintilla-mirror-6608047ba5e8f9e88aaa5a99dfcac3c030471f77.tar.gz |
Fix warning about extra ';'.
-rw-r--r-- | cocoa/PlatCocoa.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/PlatCocoa.mm b/cocoa/PlatCocoa.mm index 985539396..87cac5ea2 100644 --- a/cocoa/PlatCocoa.mm +++ b/cocoa/PlatCocoa.mm @@ -1498,7 +1498,7 @@ public: doubleClickAction(NULL), doubleClickActionData(NULL) { } - ~ListBoxImpl() {}; + ~ListBoxImpl() {} // ListBox methods void SetFont(Font& font); |