X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/5dd29cf7f83b5dd9aa2c87898e7ea57abdf99a3e..7374c7790ee32f36855e4257eb15d2fe43e277ea:/macosx/osxctrls.m diff --git a/macosx/osxctrls.m b/macosx/osxctrls.m index e3780ff6..12e813c9 100644 --- a/macosx/osxctrls.m +++ b/macosx/osxctrls.m @@ -1686,6 +1686,17 @@ void dlg_text_set(union control *ctrl, void *dv, char const *text) [c->textview setString:[NSString stringWithCString:text]]; } +void dlg_label_change(union control *ctrl, void *dlg, char const *text) +{ + /* + * This function is currently only used by the config box to + * switch the labels on the host and port boxes between serial + * and network modes. Since OS X does not (yet?) have a serial + * back end, this function can safely do nothing for the + * moment. + */ +} + void dlg_filesel_set(union control *ctrl, void *dv, Filename fn) { /* FIXME */