diff options
author | John Ankarström <john@ankarstrom.se> | 2022-07-19 14:50:00 +0200 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-07-19 14:50:00 +0200 |
commit | bc6d9cdf289af9167912329f1c5f4e39bd6bac29 (patch) | |
tree | 27c5c0f75bd631f0ddf32feddb13d14ad8bf1b1d /c/main.cpp | |
parent | 2ffbd7fcc178e68e7132d2f8f649d131c5a5d3af (diff) | |
download | EpisodeBrowser-bc6d9cdf289af9167912329f1c5f4e39bd6bac29.tar.gz |
Use static member function instead of friend function.
Diffstat (limited to 'c/main.cpp')
-rw-r--r-- | c/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -462,7 +462,7 @@ LRESULT CALLBACK WndProc(const HWND hWnd, const UINT uMsg, const WPARAM wParam, case IDM_RATE1: case IDM_RATE0: g_pElv->Redraw(); - g_pElv->DoSort(); + g_pElv->Sort(); g_pElv->ShowFocus(); } b: break; |