diff options
author | nyamatongwe <devnull@localhost> | 2003-09-27 00:54:01 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2003-09-27 00:54:01 +0000 |
commit | cf792b325d285c650bc0aeec278285904209f374 (patch) | |
tree | 2c37e858f16c37cef0d9b1f41009e550169b5f5c /win32/PlatWin.cxx | |
parent | 53b7e34a92bef7818f32e971b8c780ee591c61e7 (diff) | |
download | scintilla-mirror-cf792b325d285c650bc0aeec278285904209f374.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); } |