Skip to content
Snippets Groups Projects
Commit 18bd0a4e authored by rswindell's avatar rswindell
Browse files

Cruft removal: JavaScript Support and Identity Lookup checkboxes.

Oddly, the Identity Lookup checkbox was obscurring (hiding) the Hostname
Lookup checkbox, so that becomes visible/available again.
parent 37681ff1
Branches
Tags
No related merge requests found
......@@ -106,8 +106,6 @@ void __fastcall TTelnetCfgDlg::FormShow(TObject *Sender)
=!(MainForm->bbs_startup.options&BBS_OPT_NO_QWK_EVENTS);
EventsCheckBox->Checked
=!(MainForm->bbs_startup.options&BBS_OPT_NO_EVENTS);
JavaScriptCheckBox->Checked
=!(MainForm->bbs_startup.options&BBS_OPT_NO_JAVASCRIPT);
RLoginEnabledCheckBoxClick(Sender);
SshEnabledCheckBoxClick(Sender);
......@@ -156,10 +154,6 @@ void __fastcall TTelnetCfgDlg::OKBtnClick(TObject *Sender)
MainForm->bbs_startup.options&=~BBS_OPT_NO_EVENTS;
else
MainForm->bbs_startup.options|=BBS_OPT_NO_EVENTS;
if(JavaScriptCheckBox->Checked==true)
MainForm->bbs_startup.options&=~BBS_OPT_NO_JAVASCRIPT;
else
MainForm->bbs_startup.options|=BBS_OPT_NO_JAVASCRIPT;
if(DosSupportCheckBox->Checked==true)
MainForm->bbs_startup.options&=~BBS_OPT_NO_DOS;
else
......
......@@ -110,17 +110,6 @@ object TelnetCfgDlg: TTelnetCfgDlg
ShowHint = True
TabOrder = 7
end
object JavaScriptCheckBox: TCheckBox
Left = 148
Top = 114
Width = 117
Height = 20
Hint = 'Enable JavaScript Support'
Caption = 'JavaScript Support'
ParentShowHint = False
ShowHint = True
TabOrder = 8
end
object EventsCheckBox: TCheckBox
Left = 148
Top = 62
......@@ -141,18 +130,7 @@ object TelnetCfgDlg: TTelnetCfgDlg
Caption = 'DOS Program Support'
ParentShowHint = False
ShowHint = True
TabOrder = 9
end
object IdentityCheckBox: TCheckBox
Left = 7
Top = 114
Width = 117
Height = 20
Hint = 'Automatically lookup client'#39's identity via IDENT protocol'
Caption = 'Identity Lookup'
ParentShowHint = False
ShowHint = True
TabOrder = 10
TabOrder = 8
end
object MaxConConEdit: TEdit
Left = 85
......
......@@ -89,7 +89,6 @@ __published:
TCheckBox *RLoginEnabledCheckBox;
TButton *RLoginIPallowButton;
TCheckBox *QWKEventsCheckBox;
TCheckBox *JavaScriptCheckBox;
TCheckBox *EventsCheckBox;
TTabSheet *SshTabSheet;
TLabel *SshPortLabel;
......@@ -98,7 +97,6 @@ __published:
TLabel *SshInterfaceLabel;
TEdit *SshInterfaceEdit;
TCheckBox *DosSupportCheckBox;
TCheckBox *IdentityCheckBox;
TLabel *MaxConConLabel;
TEdit *MaxConConEdit;
TLabel *SshConnectTimeoutLabel;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment