diff options
-rw-r--r-- | protocols/IRCG/res/IRC.rc | 3 | ||||
-rw-r--r-- | protocols/IRCG/src/options.cpp | 2 | ||||
-rw-r--r-- | protocols/IRCG/src/resource.h | 1 |
3 files changed, 1 insertions, 5 deletions
diff --git a/protocols/IRCG/res/IRC.rc b/protocols/IRCG/res/IRC.rc index 2a57b63d79..447ce4e96c 100644 --- a/protocols/IRCG/res/IRC.rc +++ b/protocols/IRCG/res/IRC.rc @@ -351,8 +351,7 @@ BEGIN "Button",BS_AUTOCHECKBOX | WS_TABSTOP,22,200,256,10
GROUPBOX "Ignore users",-1,8,6,289,150
GROUPBOX "Other",-1,8,156,289,62
- CONTROL "(*) Queries from users on your contact list are never ignored",IDC_CUSTOM,
- "Hyperlink",WS_TABSTOP | 0x1,16,142,274,9
+ LTEXT "(*) Queries from users on your contact list are never ignored",IDC_STATIC,16,142,274,9
END
IDD_ADDIGNORE DIALOGEX 0, 0, 220, 110
diff --git a/protocols/IRCG/src/options.cpp b/protocols/IRCG/src/options.cpp index 4f3439540d..414cd687df 100644 --- a/protocols/IRCG/src/options.cpp +++ b/protocols/IRCG/src/options.cpp @@ -623,7 +623,6 @@ class COtherPrefsDlg : public CIrcBaseDlg {
bool m_performlistModified;
- CCtrlButton m_url;
CCtrlMButton m_add, m_delete;
CCtrlCombo m_performCombo, m_codepage;
CCtrlEdit m_pertormEdit, m_quitMessage, m_alias;
@@ -632,7 +631,6 @@ class COtherPrefsDlg : public CIrcBaseDlg public:
COtherPrefsDlg(CIrcProto *_pro) :
CIrcBaseDlg(_pro, IDD_PREFS_OTHER),
- m_url(this, IDC_CUSTOM),
m_performCombo(this, IDC_PERFORMCOMBO),
m_codepage(this, IDC_CODEPAGE),
m_pertormEdit(this, IDC_PERFORMEDIT),
diff --git a/protocols/IRCG/src/resource.h b/protocols/IRCG/src/resource.h index cc7a8a0371..e1812d5fa7 100644 --- a/protocols/IRCG/src/resource.h +++ b/protocols/IRCG/src/resource.h @@ -147,7 +147,6 @@ #define IDC_IGNOREFILE 1214
#define IDC_IGNORECHAT 1215
#define IDC_IGNOREUNKNOWN 1216
-#define IDC_CUSTOM 1218
#define IDC_SPIN1 1219
#define IDC_SPIN2 1220
#define IDC_CODEPAGE 1222
|