diff options
author | nyamatongwe <unknown> | 2003-09-27 00:54:01 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-09-27 00:54:01 +0000 |
commit | 03e957297e0b4a513baf6b00ec10f97bb53c4fcb (patch) | |
tree | 2c37e858f16c37cef0d9b1f41009e550169b5f5c /win32/PlatWin.cxx | |
parent | 9164a954eb3949135144f0ffdb760723537d4968 (diff) | |
download | scintilla-mirror-03e957297e0b4a513baf6b00ec10f97bb53c4fcb.tar.gz |
Removed ListBox::Sort as always created in sorted order.
Diffstat (limited to 'win32/PlatWin.cxx')
-rw-r--r-- | win32/PlatWin.cxx | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/win32/PlatWin.cxx b/win32/PlatWin.cxx index 83ab47983..fc8b01e7f 100644 --- a/win32/PlatWin.cxx +++ b/win32/PlatWin.cxx @@ -946,7 +946,6 @@ public: virtual int GetSelection(); virtual int Find(const char *prefix); virtual void GetValue(int n, char *value, int len); - virtual void Sort(); virtual void RegisterImage(int type, const char *xpm_data); virtual void ClearRegisteredImages(); virtual void SetDoubleClickAction(CallBackAction, void *) { @@ -1070,10 +1069,6 @@ void ListBoxX::GetValue(int n, char *value, int len) { } } -void ListBoxX::Sort() { - // Windows keeps sorted so no need to sort -} - void ListBoxX::RegisterImage(int type, const char *xpm_data) { xset.Add(type, xpm_data); } |