summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--protocols/FacebookRM/res/facebook.rc2
-rw-r--r--protocols/FacebookRM/src/dialogs.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/protocols/FacebookRM/res/facebook.rc b/protocols/FacebookRM/res/facebook.rc
index fb1ed5cd1a..591aa48184 100644
--- a/protocols/FacebookRM/res/facebook.rc
+++ b/protocols/FacebookRM/res/facebook.rc
@@ -215,7 +215,7 @@ CAPTION "Facebook Login Approval"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
LTEXT "Your security settings requires to input a security code to access your account from unknown browsers.\n\nYou can get the code via Facebook application on your phone or click button below to receive it via SMS.", IDC_STATIC, 7, 7, 179, 40
- PUSHBUTTON "Send SMS", IDSMS, 7, 53, 59, 15
+ PUSHBUTTON "Send SMS", IDC_SEND_SMS, 7, 53, 59, 15
EDITTEXT IDC_TEXT, 72, 54, 114, 12, ES_AUTOHSCROLL | ES_NUMBER
DEFPUSHBUTTON "OK",IDOK,82,75,50,14
PUSHBUTTON "Cancel",IDCANCEL,136,75,50,14
diff --git a/protocols/FacebookRM/src/dialogs.cpp b/protocols/FacebookRM/src/dialogs.cpp
index 9ce23811a7..70bc1f3856 100644
--- a/protocols/FacebookRM/src/dialogs.cpp
+++ b/protocols/FacebookRM/src/dialogs.cpp
@@ -641,7 +641,7 @@ INT_PTR CALLBACK FBOptionsMessagingProc(HWND hwnd, UINT message, WPARAM wparam,
CFacebookGuardDialog::CFacebookGuardDialog(FacebookProto *proto, const char *fb_dtsg)
: CFacebookDlgBase(proto, IDD_GUARD, false),
m_ok(this, IDOK),
- m_sms(this, IDSMS),
+ m_sms(this, IDC_SEND_SMS),
m_text(this, IDC_TEXT),
m_fb_dtsg(fb_dtsg)
{