diff options
author | Kirill Volinsky <mataes2007@gmail.com> | 2012-09-27 13:10:12 +0000 |
---|---|---|
committer | Kirill Volinsky <mataes2007@gmail.com> | 2012-09-27 13:10:12 +0000 |
commit | b6bd986a22906775c3f2c6e18ad67ca602298869 (patch) | |
tree | b71e72b71e8e66abe0fe8260ae75fe68e0a2eda2 /protocols | |
parent | 6839e6aa877dfd7f86571361b1d85bf7f15fa427 (diff) |
fixed function name
git-svn-id: http://svn.miranda-ng.org/main/trunk@1682 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/Skype/src/skype_dialogs.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/protocols/Skype/src/skype_dialogs.cpp b/protocols/Skype/src/skype_dialogs.cpp index bcdf51063e..e22e50d7aa 100644 --- a/protocols/Skype/src/skype_dialogs.cpp +++ b/protocols/Skype/src/skype_dialogs.cpp @@ -4,7 +4,7 @@ INT_PTR CALLBACK CSkypeProto::SkypeAccountProc(HWND hwnd, UINT message, WPARAM w {
CSkypeProto *proto;
- switch ( message )
+ switch (message)
{
case WM_INITDIALOG:
TranslateDialogDefault(hwnd);
@@ -80,11 +80,11 @@ INT_PTR __cdecl CSkypeProto::SvcCreateAccMgrUI(WPARAM wParam, LPARAM lParam) &CSkypeProto::SkypeAccountProc, (LPARAM)this);
}
-INT_PTR CALLBACK FBOptionsProc( HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam )
+INT_PTR CALLBACK SkypeOptionsProc(HWND hwnd, UINT message, WPARAM wparam, LPARAM lparam)
{
CSkypeProto *proto;
- switch ( message )
+ switch (message)
{
case WM_INITDIALOG:
|