From 3fcb8cd1a66b409ae3a8e9ba4941ec2c751ef856 Mon Sep 17 00:00:00 2001 From: Jonas Kümmerlin Date: Sun, 31 May 2020 20:59:39 +0200 Subject: panel: implement naming convention with underscores --- alf/alfpanel.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'alf/alfpanel.cpp') diff --git a/alf/alfpanel.cpp b/alf/alfpanel.cpp index 085b1c7..7bb3f61 100644 --- a/alf/alfpanel.cpp +++ b/alf/alfpanel.cpp @@ -69,7 +69,7 @@ ALF_Panel_InternalSetEdge(ALFPanelPriv *priv, HWND hwnd, DWORD edge) } void -ALF_PanelSetVTable(HWND panel, const ALFPanelVTable *vtbl, void *closure) +ALF_Panel_SetVTable(HWND panel, const ALFPanelVTable *vtbl, void *closure) { ALFPanelSetVtblParams p = { vtbl, closure }; SendMessage(panel, ALF_WM_PANEL_SETVTABLE, 0, (LPARAM)&p); @@ -206,13 +206,13 @@ ALF_Panel_DefWindowProc(HWND window, UINT msg, WPARAM wparam, LPARAM lparam) } DWORD -ALF_PanelEdge(HWND panel) +ALF_Panel_Edge(HWND panel) { return (DWORD)SendMessage(panel, ALF_WM_PANEL_GETEDGE, 0, 0); } void -ALF_PanelSetEdge(HWND panel, DWORD edge) +ALF_Panel_SetEdge(HWND panel, DWORD edge) { SendMessage(panel, ALF_WM_PANEL_SETEDGE, 0, (LPARAM)edge); } -- cgit v1.2.3