summaryrefslogtreecommitdiff
path: root/plugins/YAMN
diff options
context:
space:
mode:
authordartraiden <wowemuh@gmail.com>2017-12-11 21:56:37 +0300
committerdartraiden <wowemuh@gmail.com>2017-12-11 22:13:09 +0300
commit962ef1f3c0de62acfd990b438ea3dc65f09fc4fc (patch)
tree53bd009468653febc3eeb7af7006696e099dd181 /plugins/YAMN
parent617831dfc953a5bba630163c01fbeda11445ee78 (diff)
YAMN: remove forgotten email
Diffstat (limited to 'plugins/YAMN')
-rw-r--r--plugins/YAMN/res/YAMN.rc2
-rw-r--r--plugins/YAMN/src/proto/pop3/pop3opt.cpp2
-rw-r--r--plugins/YAMN/src/resource.h1
3 files changed, 0 insertions, 5 deletions
diff --git a/plugins/YAMN/res/YAMN.rc b/plugins/YAMN/res/YAMN.rc
index 68436a49ae..c7bf41f838 100644
--- a/plugins/YAMN/res/YAMN.rc
+++ b/plugins/YAMN/res/YAMN.rc
@@ -163,8 +163,6 @@ BEGIN
EDITTEXT IDC_STDESC,85,41,215,23,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER | WS_GROUP
LTEXT "Copyright:",IDC_STATIC,13,64,72,10
EDITTEXT IDC_STCOPY,85,63,215,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER | WS_GROUP
- LTEXT "E-mail:",IDC_STATIC,13,77,72,11
- EDITTEXT IDC_STMAIL,85,76,214,12,ES_AUTOHSCROLL | ES_READONLY | NOT WS_BORDER | WS_GROUP
LTEXT "Homepage:",IDC_STATIC,13,101,72,11
CONTROL "",IDC_STWWW,"Hyperlink",WS_TABSTOP,85,101,215,11
END
diff --git a/plugins/YAMN/src/proto/pop3/pop3opt.cpp b/plugins/YAMN/src/proto/pop3/pop3opt.cpp
index 5d239f3e1e..33a679651a 100644
--- a/plugins/YAMN/src/proto/pop3/pop3opt.cpp
+++ b/plugins/YAMN/src/proto/pop3/pop3opt.cpp
@@ -97,7 +97,6 @@ INT_PTR CALLBACK DlgProcPluginOpt(HWND hDlg, UINT msg, WPARAM wParam, LPARAM)
SetDlgItemTextA(hDlg, IDC_STVER, PParser->Plugin->PluginInfo->Ver);
SetDlgItemTextA(hDlg, IDC_STDESC, PParser->Plugin->PluginInfo->Description == nullptr ? "" : PParser->Plugin->PluginInfo->Description);
SetDlgItemTextA(hDlg, IDC_STCOPY, PParser->Plugin->PluginInfo->Copyright == nullptr ? "" : PParser->Plugin->PluginInfo->Copyright);
- SetDlgItemTextA(hDlg, IDC_STMAIL, PParser->Plugin->PluginInfo->Email == nullptr ? "" : PParser->Plugin->PluginInfo->Email);
SetDlgItemTextA(hDlg, IDC_STWWW, PParser->Plugin->PluginInfo->WWW == nullptr ? "" : PParser->Plugin->PluginInfo->WWW);
break;
}
@@ -106,7 +105,6 @@ INT_PTR CALLBACK DlgProcPluginOpt(HWND hDlg, UINT msg, WPARAM wParam, LPARAM)
SetDlgItemTextA(hDlg, IDC_STVER, FParser->Plugin->PluginInfo->Ver);
SetDlgItemTextA(hDlg, IDC_STDESC, FParser->Plugin->PluginInfo->Description == nullptr ? "" : FParser->Plugin->PluginInfo->Description);
SetDlgItemTextA(hDlg, IDC_STCOPY, FParser->Plugin->PluginInfo->Copyright == nullptr ? "" : FParser->Plugin->PluginInfo->Copyright);
- SetDlgItemTextA(hDlg, IDC_STMAIL, FParser->Plugin->PluginInfo->Email == nullptr ? "" : FParser->Plugin->PluginInfo->Email);
SetDlgItemTextA(hDlg, IDC_STWWW, FParser->Plugin->PluginInfo->WWW == nullptr ? "" : FParser->Plugin->PluginInfo->WWW);
break;
}
diff --git a/plugins/YAMN/src/resource.h b/plugins/YAMN/src/resource.h
index 79965d6ae6..32b65d2c91 100644
--- a/plugins/YAMN/src/resource.h
+++ b/plugins/YAMN/src/resource.h
@@ -90,7 +90,6 @@
#define IDC_STSTATUS 1102
#define IDC_COMBOPLUGINS 1104
#define IDC_STWWW 1111
-#define IDC_STMAIL 1113
#define IDC_STCOPY 1114
#define IDC_STDESC 1115
#define IDC_STVER 1116