Solved compiler warnings
This commit is contained in:
parent
f559b54f6e
commit
fb668729c2
@ -130,7 +130,7 @@ bool gswitches::handle(word crc, const char* value) {
|
|||||||
left = middle + 1;
|
left = middle + 1;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
cfg[middle] = GetYesno(value);
|
cfg[middle] = make_bool(GetYesno(value));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
} while(left <= right);
|
} while(left <= right);
|
||||||
|
@ -184,7 +184,7 @@ void CfgAkamatchfromto() {
|
|||||||
void CfgAkamatching() {
|
void CfgAkamatching() {
|
||||||
|
|
||||||
if(cfgingroup) {
|
if(cfgingroup) {
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
CFG->grp.AddItm(GRP_AKAMATCHING, flag);
|
CFG->grp.AddItm(GRP_AKAMATCHING, flag);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -193,7 +193,7 @@ void CfgAkamatching() {
|
|||||||
|
|
||||||
void CfgAkamatchmanually()
|
void CfgAkamatchmanually()
|
||||||
{
|
{
|
||||||
CFG->akamatchmanually = (0 != GetYesno(val));
|
CFG->akamatchmanually = make_bool(GetYesno(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
@ -226,7 +226,7 @@ void CfgAreacfmreplyto() {
|
|||||||
|
|
||||||
void CfgAreacopydirect() {
|
void CfgAreacopydirect() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_AREACOPYDIRECT, flag);
|
CFG->grp.AddItm(GRP_AREACOPYDIRECT, flag);
|
||||||
else
|
else
|
||||||
@ -249,7 +249,7 @@ void CfgAreacopyto() {
|
|||||||
|
|
||||||
void CfgAreacopyaddid() {
|
void CfgAreacopyaddid() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_AREACOPYADDID, flag);
|
CFG->grp.AddItm(GRP_AREACOPYADDID, flag);
|
||||||
else
|
else
|
||||||
@ -282,7 +282,7 @@ void CfgAreaexcl() {
|
|||||||
|
|
||||||
void CfgAreaforwarddirect() {
|
void CfgAreaforwarddirect() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_AREAFORWARDDIRECT, flag);
|
CFG->grp.AddItm(GRP_AREAFORWARDDIRECT, flag);
|
||||||
else
|
else
|
||||||
@ -293,7 +293,7 @@ void CfgAreaforwarddirect() {
|
|||||||
|
|
||||||
void CfgAreafreqdirect() {
|
void CfgAreafreqdirect() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_AREAFREQDIRECT, flag);
|
CFG->grp.AddItm(GRP_AREAFREQDIRECT, flag);
|
||||||
else
|
else
|
||||||
|
@ -37,7 +37,7 @@ extern char* val;
|
|||||||
|
|
||||||
void CfgAreareplydirect() {
|
void CfgAreareplydirect() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_AREAREPLYDIRECT, flag);
|
CFG->grp.AddItm(GRP_AREAREPLYDIRECT, flag);
|
||||||
else
|
else
|
||||||
@ -451,7 +451,7 @@ void CfgDisphdrdateset() {
|
|||||||
|
|
||||||
void CfgDisphdrlocation()
|
void CfgDisphdrlocation()
|
||||||
{
|
{
|
||||||
CFG->disphdrlocation = (0 != GetYesno(val));
|
CFG->disphdrlocation = make_bool(GetYesno(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
@ -64,7 +64,7 @@ void CfgDispareano() {
|
|||||||
|
|
||||||
void CfgDisppmfirst() {
|
void CfgDisppmfirst() {
|
||||||
|
|
||||||
CFG->disppmfirst = GetYesno(val);
|
CFG->disppmfirst = make_bool(GetYesno(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
@ -78,7 +78,7 @@ void CfgDisptabsize() {
|
|||||||
|
|
||||||
void CfgEditautoattach() {
|
void CfgEditautoattach() {
|
||||||
|
|
||||||
EDIT->AutoAttach(GetYesno(val));
|
EDIT->AutoAttach(make_bool(GetYesno(val)));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
@ -139,14 +139,14 @@ void CfgEditcompletion() {
|
|||||||
|
|
||||||
void CfgEditcrlfterm() {
|
void CfgEditcrlfterm() {
|
||||||
|
|
||||||
EDIT->CrLfTerm(GetYesno(val));
|
EDIT->CrLfTerm(make_bool(GetYesno(val)));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
|
||||||
void CfgEditfieldclear() {
|
void CfgEditfieldclear() {
|
||||||
|
|
||||||
EDIT->FieldClear(GetYesno(val));
|
EDIT->FieldClear(make_bool(GetYesno(val)));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
@ -160,14 +160,14 @@ void CfgEdithardline() {
|
|||||||
|
|
||||||
void CfgEdithardlines() {
|
void CfgEdithardlines() {
|
||||||
|
|
||||||
EDIT->HardLines(GetYesno(val));
|
EDIT->HardLines(make_bool(GetYesno(val)));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
|
||||||
void CfgEdithardterm() {
|
void CfgEdithardterm() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_EDITHARDTERM, flag);
|
CFG->grp.AddItm(GRP_EDITHARDTERM, flag);
|
||||||
else
|
else
|
||||||
@ -198,7 +198,7 @@ void CfgEdithdrnodeset() {
|
|||||||
|
|
||||||
void CfgEditheaderattrs() {
|
void CfgEditheaderattrs() {
|
||||||
|
|
||||||
EDIT->HeaderAttrs(GetYesno(val));
|
EDIT->HeaderAttrs(make_bool(GetYesno(val)));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
@ -228,21 +228,21 @@ void CfgEditheaderfirst() {
|
|||||||
|
|
||||||
void CfgEditinternal() {
|
void CfgEditinternal() {
|
||||||
|
|
||||||
EDIT->Internal(GetYesno(val));
|
EDIT->Internal(make_bool(GetYesno(val)));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
|
||||||
void CfgEditmenu() {
|
void CfgEditmenu() {
|
||||||
|
|
||||||
EDIT->Menu(GetYesno(val));
|
EDIT->Menu(make_bool(GetYesno(val)));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
|
||||||
void CfgEditmixcase() {
|
void CfgEditmixcase() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_EDITMIXCASE, flag);
|
CFG->grp.AddItm(GRP_EDITMIXCASE, flag);
|
||||||
else
|
else
|
||||||
@ -290,7 +290,7 @@ void CfgEditreplyre() {
|
|||||||
|
|
||||||
void CfgEditsavemenu() {
|
void CfgEditsavemenu() {
|
||||||
|
|
||||||
EDIT->SaveMenu(GetYesno(val));
|
EDIT->SaveMenu(make_bool(GetYesno(val)));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
@ -328,7 +328,7 @@ void CfgEditundelete() {
|
|||||||
|
|
||||||
void CfgEncodeemailheaders() {
|
void CfgEncodeemailheaders() {
|
||||||
|
|
||||||
CFG->encodeemailheaders = GetYesno(val);
|
CFG->encodeemailheaders = make_bool(GetYesno(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
@ -234,7 +234,7 @@ void CfgFilealias() {
|
|||||||
|
|
||||||
void CfgForcetemplate() {
|
void CfgForcetemplate() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_FORCETEMPLATE, flag);
|
CFG->grp.AddItm(GRP_FORCETEMPLATE, flag);
|
||||||
else
|
else
|
||||||
@ -291,7 +291,7 @@ void CfgFrqoptions() {
|
|||||||
|
|
||||||
void CfgGedhandshake() {
|
void CfgGedhandshake() {
|
||||||
|
|
||||||
CFG->gedhandshake = GetYesno(val);
|
CFG->gedhandshake = make_bool(GetYesno(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
@ -79,7 +79,7 @@ void CfgHudsonuserno() {
|
|||||||
|
|
||||||
void CfgIgnorecharset() {
|
void CfgIgnorecharset() {
|
||||||
|
|
||||||
CFG->ignorecharset = GetYesno(val);
|
CFG->ignorecharset = make_bool(GetYesno(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
@ -126,7 +126,7 @@ void CfgInputfile() {
|
|||||||
|
|
||||||
void CfgIntensecolors() {
|
void CfgIntensecolors() {
|
||||||
|
|
||||||
CFG->intensecolors = GetYesno(val);
|
CFG->intensecolors = make_bool(GetYesno(val));
|
||||||
if(CFG->intensecolors)
|
if(CFG->intensecolors)
|
||||||
memcpy(CFG->color, gold_color2, sizeof(CFG->color));
|
memcpy(CFG->color, gold_color2, sizeof(CFG->color));
|
||||||
}
|
}
|
||||||
@ -194,7 +194,7 @@ void CfgInternetgateexp() {
|
|||||||
|
|
||||||
void CfgInternetmsgid() {
|
void CfgInternetmsgid() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_INTERNETMSGID, flag);
|
CFG->grp.AddItm(GRP_INTERNETMSGID, flag);
|
||||||
else
|
else
|
||||||
@ -465,7 +465,7 @@ void CfgMsglistdate() {
|
|||||||
|
|
||||||
void CfgMsglistfast() {
|
void CfgMsglistfast() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_MSGLISTFAST, flag);
|
CFG->grp.AddItm(GRP_MSGLISTFAST, flag);
|
||||||
else
|
else
|
||||||
|
@ -37,7 +37,7 @@ extern char* val;
|
|||||||
|
|
||||||
void CfgMsglistfirst() {
|
void CfgMsglistfirst() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_MSGLISTFIRST, flag);
|
CFG->grp.AddItm(GRP_MSGLISTFIRST, flag);
|
||||||
else
|
else
|
||||||
@ -48,7 +48,7 @@ void CfgMsglistfirst() {
|
|||||||
|
|
||||||
void CfgMsglistheader() {
|
void CfgMsglistheader() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_MSGLISTHEADER, flag);
|
CFG->grp.AddItm(GRP_MSGLISTHEADER, flag);
|
||||||
else
|
else
|
||||||
@ -59,7 +59,7 @@ void CfgMsglistheader() {
|
|||||||
|
|
||||||
void CfgMsglistwidesubj() {
|
void CfgMsglistwidesubj() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_MSGLISTWIDESUBJ, flag);
|
CFG->grp.AddItm(GRP_MSGLISTWIDESUBJ, flag);
|
||||||
else
|
else
|
||||||
|
@ -73,7 +73,7 @@ void CfgQuotestops() {
|
|||||||
|
|
||||||
void CfgQuotewraphard() {
|
void CfgQuotewraphard() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_QUOTEWRAPHARD, flag);
|
CFG->grp.AddItm(GRP_QUOTEWRAPHARD, flag);
|
||||||
else
|
else
|
||||||
@ -84,7 +84,7 @@ void CfgQuotewraphard() {
|
|||||||
|
|
||||||
void CfgQuoteusenewai()
|
void CfgQuoteusenewai()
|
||||||
{
|
{
|
||||||
CFG->quoteusenewai = 0 != GetYesno(val);
|
CFG->quoteusenewai = make_bool(GetYesno(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
@ -187,7 +187,7 @@ void CfgReplylink() {
|
|||||||
|
|
||||||
void CfgReplylinkfloat()
|
void CfgReplylinkfloat()
|
||||||
{
|
{
|
||||||
CFG->replylinkfloat = (0 != GetYesno(val));
|
CFG->replylinkfloat = make_bool(GetYesno(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
@ -204,7 +204,7 @@ void CfgReplylinklist() {
|
|||||||
|
|
||||||
void CfgReplylinkshowalways()
|
void CfgReplylinkshowalways()
|
||||||
{
|
{
|
||||||
CFG->replylinkshowalways = (0 != GetYesno(val));
|
CFG->replylinkshowalways = make_bool(GetYesno(val));
|
||||||
}
|
}
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
|
||||||
@ -444,7 +444,7 @@ void CfgSharemode() {
|
|||||||
|
|
||||||
void CfgShowdeleted() {
|
void CfgShowdeleted() {
|
||||||
|
|
||||||
CFG->showdeleted = GetYesno(val);
|
CFG->showdeleted = make_bool(GetYesno(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
@ -68,7 +68,7 @@ void CfgStatuslinehelp() {
|
|||||||
|
|
||||||
void CfgStripHTML() {
|
void CfgStripHTML() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_STRIPHTML, flag);
|
CFG->grp.AddItm(GRP_STRIPHTML, flag);
|
||||||
else
|
else
|
||||||
@ -93,7 +93,7 @@ void CfgStylecodes() {
|
|||||||
if (strieql(val, "HIDE"))
|
if (strieql(val, "HIDE"))
|
||||||
flag1 = flag2 = true;
|
flag1 = flag2 = true;
|
||||||
else
|
else
|
||||||
flag2 = GetYesno(val);
|
flag2 = make_bool(GetYesno(val));
|
||||||
|
|
||||||
if (cfgingroup)
|
if (cfgingroup)
|
||||||
{
|
{
|
||||||
@ -143,7 +143,7 @@ void CfgTaglinechar() {
|
|||||||
|
|
||||||
void CfgTaglinesupport() {
|
void CfgTaglinesupport() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_TAGLINESUPPORT, flag);
|
CFG->grp.AddItm(GRP_TAGLINESUPPORT, flag);
|
||||||
else
|
else
|
||||||
@ -204,7 +204,7 @@ void CfgTemplate() {
|
|||||||
|
|
||||||
void CfgTemplatematch() {
|
void CfgTemplatematch() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_TEMPLATEMATCH, flag);
|
CFG->grp.AddItm(GRP_TEMPLATEMATCH, flag);
|
||||||
else
|
else
|
||||||
@ -237,7 +237,7 @@ void CfgTimeout() {
|
|||||||
|
|
||||||
void CfgTitlestatus(){
|
void CfgTitlestatus(){
|
||||||
|
|
||||||
CFG->titlestatus = GetYesno(val);
|
CFG->titlestatus = make_bool(GetYesno(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
@ -341,7 +341,7 @@ void CfgUrlhandler() {
|
|||||||
|
|
||||||
void CfgUsearea() {
|
void CfgUsearea() {
|
||||||
|
|
||||||
int flag = GetYesno(val) ? true : false;
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_USEAREA, flag);
|
CFG->grp.AddItm(GRP_USEAREA, flag);
|
||||||
else
|
else
|
||||||
@ -352,7 +352,7 @@ void CfgUsearea() {
|
|||||||
|
|
||||||
void CfgUsecharset() {
|
void CfgUsecharset() {
|
||||||
|
|
||||||
CFG->usecharset = GetYesno(val);
|
CFG->usecharset = make_bool(GetYesno(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
@ -370,14 +370,14 @@ void CfgUsefwd() {
|
|||||||
|
|
||||||
void CfgUseintl() {
|
void CfgUseintl() {
|
||||||
|
|
||||||
CFG->useintl = GetYesno(val);
|
CFG->useintl = make_bool(GetYesno(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
|
||||||
void CfgUsepid() {
|
void CfgUsepid() {
|
||||||
|
|
||||||
CFG->usepid = GetYesno(val);
|
CFG->usepid = make_bool(GetYesno(val));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
@ -453,7 +453,7 @@ void CfgUsername() {
|
|||||||
|
|
||||||
void CfgUsesoftcrxlat()
|
void CfgUsesoftcrxlat()
|
||||||
{
|
{
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if (cfgingroup)
|
if (cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_USESOFTCRXLAT, flag);
|
CFG->grp.AddItm(GRP_USESOFTCRXLAT, flag);
|
||||||
else
|
else
|
||||||
@ -464,7 +464,7 @@ void CfgUsesoftcrxlat()
|
|||||||
|
|
||||||
void CfgUsetzutc() {
|
void CfgUsetzutc() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_USETZUTC, flag);
|
CFG->grp.AddItm(GRP_USETZUTC, flag);
|
||||||
else
|
else
|
||||||
@ -482,7 +482,7 @@ void CfgUudecodepath() {
|
|||||||
|
|
||||||
void CfgViewhidden() {
|
void CfgViewhidden() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_VIEWHIDDEN, flag);
|
CFG->grp.AddItm(GRP_VIEWHIDDEN, flag);
|
||||||
else
|
else
|
||||||
@ -493,7 +493,7 @@ void CfgViewhidden() {
|
|||||||
|
|
||||||
void CfgViewkludge() {
|
void CfgViewkludge() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_VIEWKLUDGE, flag);
|
CFG->grp.AddItm(GRP_VIEWKLUDGE, flag);
|
||||||
else
|
else
|
||||||
@ -504,7 +504,7 @@ void CfgViewkludge() {
|
|||||||
|
|
||||||
void CfgViewquote() {
|
void CfgViewquote() {
|
||||||
|
|
||||||
bool flag = GetYesno(val);
|
bool flag = make_bool(GetYesno(val));
|
||||||
if(cfgingroup)
|
if(cfgingroup)
|
||||||
CFG->grp.AddItm(GRP_VIEWQUOTE, flag);
|
CFG->grp.AddItm(GRP_VIEWQUOTE, flag);
|
||||||
else
|
else
|
||||||
|
@ -615,7 +615,7 @@ void DoKludges(int mode, GMsg* msg, int kludges) {
|
|||||||
line = AddKludge(line, buf);
|
line = AddKludge(line, buf);
|
||||||
line->kludge = GKLUD_RFC;
|
line->kludge = GKLUD_RFC;
|
||||||
char encoding[100];
|
char encoding[100];
|
||||||
bool isusascii = striinc("ASCII", msg->charset);
|
bool isusascii = make_bool(striinc("ASCII", msg->charset));
|
||||||
bool isqp = not isusascii and IsQuotedPrintable(msg->charset);
|
bool isqp = not isusascii and IsQuotedPrintable(msg->charset);
|
||||||
if(strnieql(msg->charset, "latin", 5))
|
if(strnieql(msg->charset, "latin", 5))
|
||||||
Latin2ISO(encoding, msg->charset);
|
Latin2ISO(encoding, msg->charset);
|
||||||
|
@ -839,7 +839,7 @@ Line* IEclass::wrapit(Line** __currline, uint* __curr_col, uint* __curr_row, boo
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Was this line truncated at space?
|
// Was this line truncated at space?
|
||||||
bool truncated_at_space = isspace(_thisline->txt[_wrappos]);
|
bool truncated_at_space = make_bool(isspace(_thisline->txt[_wrappos]));
|
||||||
|
|
||||||
// Truncate at the wrapping location
|
// Truncate at the wrapping location
|
||||||
_thisline->txt.erase(_wrappos);
|
_thisline->txt.erase(_wrappos);
|
||||||
@ -2930,7 +2930,7 @@ void UndoStack::PlayItem() {
|
|||||||
|
|
||||||
uint undo_type = last_item->action & EDIT_UNDO_TYPE;
|
uint undo_type = last_item->action & EDIT_UNDO_TYPE;
|
||||||
uint undo_action = last_item->action & EDIT_UNDO_ACTION;
|
uint undo_action = last_item->action & EDIT_UNDO_ACTION;
|
||||||
in_batch = last_item->action & BATCH_MODE;
|
in_batch = make_bool(last_item->action & BATCH_MODE);
|
||||||
currline = last_item->line;
|
currline = last_item->line;
|
||||||
|
|
||||||
if(last_item->action & PREV_LINE) {
|
if(last_item->action & PREV_LINE) {
|
||||||
|
@ -1428,7 +1428,7 @@ void IEclass::AskExit() {
|
|||||||
|
|
||||||
cursoroff();
|
cursoroff();
|
||||||
GMenuQuit MenuQuit;
|
GMenuQuit MenuQuit;
|
||||||
gkbd.quitall = MenuQuit.Run();
|
gkbd.quitall = make_bool(MenuQuit.Run());
|
||||||
if(gkbd.quitall) {
|
if(gkbd.quitall) {
|
||||||
GMenuDropmsg MenuDropmsg;
|
GMenuDropmsg MenuDropmsg;
|
||||||
if(MenuDropmsg.Run())
|
if(MenuDropmsg.Run())
|
||||||
|
@ -702,8 +702,8 @@ void Initialize(int argc, char* argv[]) {
|
|||||||
|
|
||||||
// Read/compile various configs
|
// Read/compile various configs
|
||||||
compiled |= ReadLangCfg(cmdlineforce);
|
compiled |= ReadLangCfg(cmdlineforce);
|
||||||
compiled |= bool(ReadKeysCfg(cmdlineforce));
|
compiled |= make_bool(ReadKeysCfg(cmdlineforce));
|
||||||
compiled |= bool(ReadHelpCfg(cmdlineforce));
|
compiled |= make_bool(ReadHelpCfg(cmdlineforce));
|
||||||
|
|
||||||
// Initialize sound system
|
// Initialize sound system
|
||||||
InitSound();
|
InitSound();
|
||||||
|
@ -396,7 +396,7 @@ bool GMsgList::handle_key() {
|
|||||||
case KK_ListAskExit:
|
case KK_ListAskExit:
|
||||||
{
|
{
|
||||||
GMenuQuit MenuQuit;
|
GMenuQuit MenuQuit;
|
||||||
aborted = gkbd.quitall = (MenuQuit.Run());
|
aborted = gkbd.quitall = make_bool(MenuQuit.Run());
|
||||||
if(gkbd.quitall) {
|
if(gkbd.quitall) {
|
||||||
AA->bookmark = AA->Msgn.CvtReln(msgmark2);
|
AA->bookmark = AA->Msgn.CvtReln(msgmark2);
|
||||||
return false;
|
return false;
|
||||||
@ -1117,7 +1117,7 @@ bool GThreadlist::handle_key() {
|
|||||||
case KK_ListAskExit:
|
case KK_ListAskExit:
|
||||||
{
|
{
|
||||||
GMenuQuit MenuQuit;
|
GMenuQuit MenuQuit;
|
||||||
aborted = gkbd.quitall = (MenuQuit.Run());
|
aborted = gkbd.quitall = make_bool(MenuQuit.Run());
|
||||||
if(gkbd.quitall)
|
if(gkbd.quitall)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -868,7 +868,7 @@ int GMenuEditHeader::Run(int mode, GMsg* msg) {
|
|||||||
|
|
||||||
update_statusline(LNG->EditHeader);
|
update_statusline(LNG->EditHeader);
|
||||||
|
|
||||||
_tag = EditHeaderinfo(mode, *HeaderView, doedithdr);
|
_tag = EditHeaderinfo(mode, *HeaderView, make_bool(doedithdr));
|
||||||
if((_tag == W_ESCPRESS) or gkbd.quitall)
|
if((_tag == W_ESCPRESS) or gkbd.quitall)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -39,7 +39,6 @@ static bool tokenxchg(char*& dst, char* tok, const char* src, int len = 0, int c
|
|||||||
|
|
||||||
uint toklen = strlen(tok);
|
uint toklen = strlen(tok);
|
||||||
char buf[100];
|
char buf[100];
|
||||||
bool use;
|
|
||||||
|
|
||||||
if(*dst != *tok)
|
if(*dst != *tok)
|
||||||
return false;
|
return false;
|
||||||
@ -59,7 +58,7 @@ static bool tokenxchg(char*& dst, char* tok, const char* src, int len = 0, int c
|
|||||||
va_list a;
|
va_list a;
|
||||||
va_start(a, cnt);
|
va_start(a, cnt);
|
||||||
for(int i = 0; i < cnt; i ++) {
|
for(int i = 0; i < cnt; i ++) {
|
||||||
use = va_arg(a, int);
|
bool use = make_bool(va_arg(a, int));
|
||||||
if(dst[toklen] == '{') {
|
if(dst[toklen] == '{') {
|
||||||
char *p = strchr(dst+toklen, '}');
|
char *p = strchr(dst+toklen, '}');
|
||||||
if(p) {
|
if(p) {
|
||||||
@ -123,8 +122,8 @@ char* TokenXlat(int mode, char* input, GMsg* msg, GMsg* oldmsg, int __origarea)
|
|||||||
strftimei(odtime, 80, LNG->DateTimeFmt, written_tm);
|
strftimei(odtime, 80, LNG->DateTimeFmt, written_tm);
|
||||||
|
|
||||||
const char* origareaid = AL.AreaIdToPtr(__origarea)->echoid();
|
const char* origareaid = AL.AreaIdToPtr(__origarea)->echoid();
|
||||||
bool origareaisinet = AL.AreaIdToPtr(__origarea)->isinternet();
|
bool origareaisinet = make_bool(AL.AreaIdToPtr(__origarea)->isinternet());
|
||||||
bool currareaisinet = AA->isinternet();
|
bool currareaisinet = make_bool(AA->isinternet());
|
||||||
char* modereptr = oldmsg->re;
|
char* modereptr = oldmsg->re;
|
||||||
|
|
||||||
char msgno[16];
|
char msgno[16];
|
||||||
|
@ -1038,7 +1038,7 @@ void Lookup(GMsg* msg, Addr* addr, char* name, int topline, char* status) {
|
|||||||
if(not found or (topline < 0)) {
|
if(not found or (topline < 0)) {
|
||||||
strcpy(buf, information);
|
strcpy(buf, information);
|
||||||
update_statusline(status);
|
update_statusline(status);
|
||||||
found = browse_nodelist(msg, tmpname, abs(topline));
|
found = make_bool(browse_nodelist(msg, tmpname, abs(topline)));
|
||||||
update_statusline(buf);
|
update_statusline(buf);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -617,9 +617,9 @@ static void MakeMsg2(int& mode, int& status, int& forwstat, int& topline, GMsg*
|
|||||||
LoadText(msg, AddPath(CFG->goldpath, EDIT->File()));
|
LoadText(msg, AddPath(CFG->goldpath, EDIT->File()));
|
||||||
if(mode == MODE_FORWARD)
|
if(mode == MODE_FORWARD)
|
||||||
msg->attr.pos1();
|
msg->attr.pos1();
|
||||||
int adat_viewhidden = AA->Viewhidden();
|
bool adat_viewhidden = AA->Viewhidden();
|
||||||
int adat_viewkludge = AA->Viewkludge();
|
bool adat_viewkludge = AA->Viewkludge();
|
||||||
int adat_viewquote = AA->Viewquote();
|
bool adat_viewquote = AA->Viewquote();
|
||||||
bool adat_striphtml = AA->StripHTML();
|
bool adat_striphtml = AA->StripHTML();
|
||||||
AA->adat->viewhidden = true;
|
AA->adat->viewhidden = true;
|
||||||
AA->adat->viewkludge = true;
|
AA->adat->viewkludge = true;
|
||||||
@ -752,9 +752,9 @@ void MakeMsg(int mode, GMsg* omsg, bool ignore_replyto) {
|
|||||||
post_xparea.pop_back();
|
post_xparea.pop_back();
|
||||||
}
|
}
|
||||||
|
|
||||||
int status = MODE_SAVE;
|
int status = MODE_SAVE;
|
||||||
int hardlines = EDIT->HardLines();
|
bool hardlines = EDIT->HardLines();
|
||||||
int topline = 0;
|
int topline = 0;
|
||||||
fspecs = specfiles = 0;
|
fspecs = specfiles = 0;
|
||||||
fspec = (FileSpec*)throw_realloc(fspec, sizeof(FileSpec));
|
fspec = (FileSpec*)throw_realloc(fspec, sizeof(FileSpec));
|
||||||
memset(fspec, 0, sizeof(FileSpec));
|
memset(fspec, 0, sizeof(FileSpec));
|
||||||
|
@ -587,7 +587,7 @@ int ExternUtil(GMsg *msg, ExtUtil *extutil) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int hardlines = EDIT->HardLines();
|
bool hardlines = EDIT->HardLines();
|
||||||
EDIT->HardLines(false);
|
EDIT->HardLines(false);
|
||||||
LoadText(msg, editorfile);
|
LoadText(msg, editorfile);
|
||||||
EDIT->HardLines(hardlines);
|
EDIT->HardLines(hardlines);
|
||||||
|
@ -44,11 +44,11 @@ void Area::UpdateAreadata() {
|
|||||||
unread = _unread;
|
unread = _unread;
|
||||||
isvalidchg = true;
|
isvalidchg = true;
|
||||||
}
|
}
|
||||||
isunreadchg = (bool)(unread != _unread);
|
isunreadchg = (unread != _unread);
|
||||||
unread = _unread;
|
unread = _unread;
|
||||||
word oldmask = AL.mask;
|
word oldmask = AL.mask;
|
||||||
AL.mask = 0;
|
AL.mask = 0;
|
||||||
set_marked(_unread);
|
set_marked(make_bool(_unread));
|
||||||
AL.mask = oldmask;
|
AL.mask = oldmask;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -359,7 +359,7 @@ bool golded_search_manager::search(GMsg* msg, bool quick, bool shortcircuit) {
|
|||||||
logic.push_operator(geval::logic_or);
|
logic.push_operator(geval::logic_or);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return (bool)logic.evaluate();
|
return make_bool(logic.evaluate());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1062,9 +1062,9 @@ void OtherAreaReplyMsg() {
|
|||||||
destarea = AreaPick(LNG->ReplyArea, 6, &destarea);
|
destarea = AreaPick(LNG->ReplyArea, 6, &destarea);
|
||||||
}
|
}
|
||||||
if(destarea != -1) {
|
if(destarea != -1) {
|
||||||
int adat_viewhidden = AA->Viewhidden();
|
bool adat_viewhidden = AA->Viewhidden();
|
||||||
int adat_viewkludge = AA->Viewkludge();
|
bool adat_viewkludge = AA->Viewkludge();
|
||||||
int adat_viewquote = AA->Viewquote();
|
bool adat_viewquote = AA->Viewquote();
|
||||||
AL.SetActiveAreaId(destarea);
|
AL.SetActiveAreaId(destarea);
|
||||||
if(CurrArea != OrigArea) {
|
if(CurrArea != OrigArea) {
|
||||||
AA->Open();
|
AA->Open();
|
||||||
@ -1218,9 +1218,9 @@ void OtherAreaQuoteMsg(bool ignore_replyto) {
|
|||||||
destarea = AreaPick(LNG->ReplyArea, 6, &destarea);
|
destarea = AreaPick(LNG->ReplyArea, 6, &destarea);
|
||||||
}
|
}
|
||||||
if(destarea != -1) {
|
if(destarea != -1) {
|
||||||
int adat_viewhidden = AA->Viewhidden();
|
bool adat_viewhidden = AA->Viewhidden();
|
||||||
int adat_viewkludge = AA->Viewkludge();
|
bool adat_viewkludge = AA->Viewkludge();
|
||||||
int adat_viewquote = AA->Viewquote();
|
bool adat_viewquote = AA->Viewquote();
|
||||||
AL.SetActiveAreaId(destarea);
|
AL.SetActiveAreaId(destarea);
|
||||||
if(CurrArea != OrigArea) {
|
if(CurrArea != OrigArea) {
|
||||||
AA->Open();
|
AA->Open();
|
||||||
@ -1268,9 +1268,9 @@ void OtherAreaCommentMsg() {
|
|||||||
destarea = AreaPick(LNG->ReplyArea, 6, &destarea);
|
destarea = AreaPick(LNG->ReplyArea, 6, &destarea);
|
||||||
}
|
}
|
||||||
if(destarea != -1) {
|
if(destarea != -1) {
|
||||||
int adat_viewhidden = AA->Viewhidden();
|
bool adat_viewhidden = AA->Viewhidden();
|
||||||
int adat_viewkludge = AA->Viewkludge();
|
bool adat_viewkludge = AA->Viewkludge();
|
||||||
int adat_viewquote = AA->Viewquote();
|
bool adat_viewquote = AA->Viewquote();
|
||||||
AL.SetActiveAreaId(destarea);
|
AL.SetActiveAreaId(destarea);
|
||||||
if(CurrArea != OrigArea) {
|
if(CurrArea != OrigArea) {
|
||||||
AA->Open();
|
AA->Open();
|
||||||
|
@ -97,11 +97,11 @@ public:
|
|||||||
char* By() { return *realby ? realby : by; }
|
char* By() { return *realby ? realby : by; }
|
||||||
char* To() { return *realto ? realto : to; }
|
char* To() { return *realto ? realto : to; }
|
||||||
|
|
||||||
bool to_me() { return (you_and_I & TO_ME); }
|
bool to_me() { return make_bool(you_and_I & TO_ME ); }
|
||||||
bool to_all() { return (you_and_I & TO_ALL); }
|
bool to_all() { return make_bool(you_and_I & TO_ALL); }
|
||||||
bool by_me() { return (you_and_I & BY_ME); }
|
bool by_me() { return make_bool(you_and_I & BY_ME ); }
|
||||||
bool to_you() { return (you_and_I & TO_YOU); }
|
bool to_you() { return make_bool(you_and_I & TO_YOU); }
|
||||||
bool by_you() { return (you_and_I & BY_YOU); }
|
bool by_you() { return make_bool(you_and_I & BY_YOU); }
|
||||||
|
|
||||||
void TextToLines(int __line_width, bool getvalue = true, bool header_recode = true);
|
void TextToLines(int __line_width, bool getvalue = true, bool header_recode = true);
|
||||||
void LinesToText();
|
void LinesToText();
|
||||||
@ -389,7 +389,7 @@ public:
|
|||||||
bool get_findfirst() { return findfirst; }
|
bool get_findfirst() { return findfirst; }
|
||||||
uint get_findtype() { return findtype; }
|
uint get_findtype() { return findtype; }
|
||||||
|
|
||||||
bool isopen() { return area->isopen; }
|
bool isopen() { return make_bool(area->isopen); }
|
||||||
|
|
||||||
bool isunreadchg : 1; // TRUE if unread was changed since last scan
|
bool isunreadchg : 1; // TRUE if unread was changed since last scan
|
||||||
bool isreadmark : 1; // TRUE if in read marked mode
|
bool isreadmark : 1; // TRUE if in read marked mode
|
||||||
|
@ -47,14 +47,11 @@
|
|||||||
// C4786: 'identifier' : identifier was truncated to 'number'
|
// C4786: 'identifier' : identifier was truncated to 'number'
|
||||||
// characters in the debug information
|
// characters in the debug information
|
||||||
//
|
//
|
||||||
// C4800: 'type' : forcing value to bool 'true' or 'false'
|
|
||||||
// (performance warning)
|
|
||||||
//
|
|
||||||
// C4065: switch statement contains 'default' but no 'case' labels
|
// C4065: switch statement contains 'default' but no 'case' labels
|
||||||
//
|
//
|
||||||
// C4200: nonstandard extension used : zero-sized array in struct/union
|
// C4200: nonstandard extension used : zero-sized array in struct/union
|
||||||
//
|
//
|
||||||
#pragma warning(disable: 4200 4786 4800 4065)
|
#pragma warning(disable: 4200 4786 4065)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
@ -165,7 +162,7 @@ template <class T> inline int compare_two(T a, T b) { return a < b ? -1 : a
|
|||||||
template <class T> inline T minimum_of_two(T a, T b) { return (a < b) ? a : b; }
|
template <class T> inline T minimum_of_two(T a, T b) { return (a < b) ? a : b; }
|
||||||
template <class T> inline T maximum_of_two(T a, T b) { return (a > b) ? a : b; }
|
template <class T> inline T maximum_of_two(T a, T b) { return (a > b) ? a : b; }
|
||||||
template <class T> inline int zero_or_one(T e) { return e ? 1 : 0; }
|
template <class T> inline int zero_or_one(T e) { return e ? 1 : 0; }
|
||||||
template <class T> inline bool make_bool(T a) { return a ? true : false; }
|
template <class T> inline bool make_bool(T a) { return a != 0; }
|
||||||
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
@ -72,11 +72,11 @@
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef S_ISDIR
|
#ifndef S_ISDIR
|
||||||
#define S_ISDIR(st_mode) ((st_mode)&_S_IFDIR)
|
#define S_ISDIR(st_mode) (make_bool((st_mode)&_S_IFDIR))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef S_ISREG
|
#ifndef S_ISREG
|
||||||
#define S_ISREG(st_mode) ((st_mode)&_S_IFREG)
|
#define S_ISREG(st_mode) (make_bool((st_mode)&_S_IFREG))
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef R_OK
|
#ifndef R_OK
|
||||||
|
@ -52,10 +52,6 @@
|
|||||||
#define IM_PRD_CODE 0x4B
|
#define IM_PRD_CODE 0x4B
|
||||||
#define BETA
|
#define BETA
|
||||||
|
|
||||||
// Data type definitions
|
|
||||||
|
|
||||||
typedef unsigned char bit;
|
|
||||||
|
|
||||||
// Internal limits
|
// Internal limits
|
||||||
|
|
||||||
#define MAXAKAS 50 /* Max # of addresses */
|
#define MAXAKAS 50 /* Max # of addresses */
|
||||||
|
@ -48,11 +48,6 @@
|
|||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
|
||||||
|
|
||||||
typedef byte bit;
|
|
||||||
|
|
||||||
|
|
||||||
// ------------------------------------------------------------------
|
// ------------------------------------------------------------------
|
||||||
// Structure of the records
|
// Structure of the records
|
||||||
|
|
||||||
|
@ -86,7 +86,7 @@ public:
|
|||||||
const ftn_addr& aka() const { return cfg.aka; }
|
const ftn_addr& aka() const { return cfg.aka; }
|
||||||
int originno() const { return cfg.originno; }
|
int originno() const { return cfg.originno; }
|
||||||
Attr& attr() { return cfg.attr; }
|
Attr& attr() { return cfg.attr; }
|
||||||
bool ispacked() const { return cfg.attr.pkd(); }
|
bool ispacked() const { return make_bool(cfg.attr.pkd()); }
|
||||||
void packed(bool a) { cfg.attr.pkd(a); }
|
void packed(bool a) { cfg.attr.pkd(a); }
|
||||||
|
|
||||||
bool ascan() { return (bool)cfg.scan; }
|
bool ascan() { return (bool)cfg.scan; }
|
||||||
|
Reference in New Issue
Block a user