X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=macosx%2Fosxctrls.m;h=12e813c9058cb0e63a3a04440039b375e786d0fd;hb=afa871e3cfc82eb6b92b02fd1dad094c5d1949f2;hp=e3780ff682d402fb085697df18c497f6ee0b067c;hpb=46bfde32e84f331f65fac3fc6e9948d78a723d95;p=PuTTY.git 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 */