summaryrefslogtreecommitdiff
path: root/plugins/KeyboardNotify/src/options.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/KeyboardNotify/src/options.cpp')
-rw-r--r--plugins/KeyboardNotify/src/options.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/KeyboardNotify/src/options.cpp b/plugins/KeyboardNotify/src/options.cpp
index bacf145aa4..a0b31b6e55 100644
--- a/plugins/KeyboardNotify/src/options.cpp
+++ b/plugins/KeyboardNotify/src/options.cpp
@@ -225,7 +225,7 @@ INT_PTR CALLBACK DlgProcProtoOptions(HWND hwndDlg, UINT msg, WPARAM wParam, LPAR
lvItem.iSubItem = 0;
for (int i=0; i < ProtoList.protoCount; i++) {
int count; PROTOACCOUNT** protos;
- ProtoEnumAccounts( &count, &protos );
+ Proto_EnumAccounts( &count, &protos );
if(ProtoList.protoInfo[i].visible) {
lvItem.lParam = (LPARAM)ProtoList.protoInfo[i].szProto;
lvItem.pszText = protos[i] -> tszAccountName;
@@ -1362,7 +1362,7 @@ INT_PTR CALLBACK DlgProcXstatusList(HWND hwndDlg, UINT msg, WPARAM wParam, LPARA
if (ProtoList.protoInfo[i].enabled && XstatusListAux[i].count) {
int count;
PROTOACCOUNT **protos;
- ProtoEnumAccounts( &count, &protos );
+ Proto_EnumAccounts( &count, &protos );
tvis.hParent = NULL;
tvis.hInsertAfter = TVI_LAST;