mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-10 18:07:59 +00:00
Add support for changing the contents of a pre-Appearance static text control.
[originally from svn r2966]
This commit is contained in:
parent
471e004558
commit
ea3dd210de
@ -1,4 +1,4 @@
|
|||||||
/* $Id: macctrls.c,v 1.4 2003/03/18 23:41:14 ben Exp $ */
|
/* $Id: macctrls.c,v 1.5 2003/03/18 23:47:33 ben Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2003 Ben Harris
|
* Copyright (c) 2003 Ben Harris
|
||||||
* All rights reserved.
|
* All rights reserved.
|
||||||
@ -712,11 +712,16 @@ void dlg_listbox_select(union control *ctrl, void *dlg, int index)
|
|||||||
void dlg_text_set(union control *ctrl, void *dlg, char const *text)
|
void dlg_text_set(union control *ctrl, void *dlg, char const *text)
|
||||||
{
|
{
|
||||||
union macctrl *mc = dlg;
|
union macctrl *mc = dlg;
|
||||||
|
Str255 title;
|
||||||
|
|
||||||
if (mac_gestalts.apprvers >= 0x100)
|
if (mac_gestalts.apprvers >= 0x100)
|
||||||
SetControlData(mc->text.tbctrl, kControlEntireControl,
|
SetControlData(mc->text.tbctrl, kControlEntireControl,
|
||||||
kControlStaticTextTextTag,
|
kControlStaticTextTextTag,
|
||||||
strlen(ctrl->text.label), ctrl->text.label);
|
strlen(ctrl->text.label), ctrl->text.label);
|
||||||
|
else {
|
||||||
|
c2pstrcpy(title, text);
|
||||||
|
SetControlTitle(mc->text.tbctrl, title);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user