1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-02-15 04:32:24 +00:00

dtfile/Help: CID 88598

This commit is contained in:
Jon Trulson 2018-04-11 14:46:57 -06:00
parent 141bfca04e
commit 54f8982c61

View file

@ -498,22 +498,21 @@ MapFileTypeToHelpString(
return(buf);
}
#ifdef old
if (miscData)
/* The DtGetActionDescription function must be modified to
accept a non-integral second parameter. (Filetypes are no
longer expressed as integers. */
desc = DtGetActionDescription(filetype, -1);
else
#endif
desc = DtDtsDataTypeToAttributeValue(filetype,
DtDTS_DA_DESCRIPTION,
NULL);
desc = DtDtsDataTypeToAttributeValue(filetype,
DtDTS_DA_DESCRIPTION,
NULL);
isAction = DtDtsDataTypeIsAction(filetype);
if (desc)
return(XtNewString(desc));
{
char *descptr = XtNewString(desc);
XtFree((char *)desc);
if (descptr)
return descptr;
else
return NULL;
}
/* No description found for this filetype */
if (isAction)