more cleanup

This commit is contained in:
Ash Wolf
2023-01-15 21:50:41 +00:00
parent 35d488e972
commit a231f5dbb9
35 changed files with 1948 additions and 422 deletions

View File

@@ -623,11 +623,11 @@ CWResult UCBGetNamedPreferences(CWPluginContext context, const char *prefsname,
PrefPanel *pnl = Prefs_FindPanel(prefsname);
if (pnl) {
if (optsCmdLine.verbose > 2)
CLReport(83, prefsname);
CLReport(CLStr83, prefsname);
UCBSecretAttachHandle(context, PrefPanel_GetHandle(pnl), prefsdata);
return cwNoErr;
} else {
CLReportError(91, prefsname);
CLReportError(CLStr91, prefsname);
*prefsdata = NULL;
return cwErrRequestFailed;
}