aboutsummaryrefslogtreecommitdiff
path: root/c/main.cpp
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2022-07-19 14:50:00 +0200
committerJohn Ankarström <john@ankarstrom.se>2022-07-19 14:50:00 +0200
commitbc6d9cdf289af9167912329f1c5f4e39bd6bac29 (patch)
tree27c5c0f75bd631f0ddf32feddb13d14ad8bf1b1d /c/main.cpp
parent2ffbd7fcc178e68e7132d2f8f649d131c5a5d3af (diff)
downloadEpisodeBrowser-bc6d9cdf289af9167912329f1c5f4e39bd6bac29.tar.gz
Use static member function instead of friend function.
Diffstat (limited to 'c/main.cpp')
-rw-r--r--c/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/main.cpp b/c/main.cpp
index f7b3472..1be9125 100644
--- a/c/main.cpp
+++ b/c/main.cpp
@@ -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;