X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/3d88e64dfcf5dc0fd361ce0c504c67a9196ce44c..9bb8630af3373e7bbf594bfeda731585684e1b69:/winctrls.c diff --git a/winctrls.c b/winctrls.c index 204bc4a4..0fb4b9fc 100644 --- a/winctrls.c +++ b/winctrls.c @@ -13,17 +13,14 @@ * button. */ -#include -#include #include #include -#include "winstuff.h" +#include "putty.h" #include "misc.h" #include "dialog.h" -#include "puttymem.h" -#include "putty.h" +#include #define GAPBETWEEN 3 #define GAPWITHIN 1 @@ -287,6 +284,7 @@ void radioline(struct ctlpos *cp, char *text, int id, int nacross, ...) if (!btext) break; bid = va_arg(ap, int); + nbuttons++; } va_end(ap); buttons = snewn(nbuttons, struct radio); @@ -2284,8 +2282,9 @@ void dlg_fontsel_set(union control *ctrl, void *dlg, FontSpec fs) if (fs.height == 0) buf = dupprintf("Font: %s, %sdefault height", fs.name, boldstr); else - buf = dupprintf("Font: %s, %s%d-point", fs.name, boldstr, - (fs.height < 0 ? -fs.height : fs.height)); + buf = dupprintf("Font: %s, %s%d-%s", fs.name, boldstr, + (fs.height < 0 ? -fs.height : fs.height), + (fs.height < 0 ? "pixel" : "point")); SetDlgItemText(dp->hwnd, c->base_id+1, buf); sfree(buf); } @@ -2458,7 +2457,7 @@ void dp_init(struct dlgparam *dp) dp->focused = dp->lastfocused = NULL; memset(dp->shortcuts, 0, sizeof(dp->shortcuts)); dp->hwnd = NULL; - dp->errtitle = NULL; + dp->wintitle = dp->errtitle = NULL; dp->privdata = newtree234(perctrl_privdata_cmp); } @@ -2482,6 +2481,8 @@ void dp_cleanup(struct dlgparam *dp) freetree234(dp->privdata); dp->privdata = NULL; } + sfree(dp->wintitle); + sfree(dp->errtitle); } void *dlg_get_privdata(union control *ctrl, void *dlg)