mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-03-22 06:38:37 -05:00
Oh, and (there's always one) remove the unnecessary extra parameter
from unix_setup_config_box(). [originally from svn r5293]
This commit is contained in:
parent
b75856edfa
commit
7109d413b4
@ -1976,7 +1976,7 @@ int do_config_box(const char *title, Config *cfg, int midsession,
|
|||||||
|
|
||||||
ctrlbox = ctrl_new_box();
|
ctrlbox = ctrl_new_box();
|
||||||
setup_config_box(ctrlbox, &sl, midsession, cfg->protocol, protcfginfo);
|
setup_config_box(ctrlbox, &sl, midsession, cfg->protocol, protcfginfo);
|
||||||
unix_setup_config_box(ctrlbox, midsession, window);
|
unix_setup_config_box(ctrlbox, midsession);
|
||||||
gtk_setup_config_box(ctrlbox, midsession, window);
|
gtk_setup_config_box(ctrlbox, midsession, window);
|
||||||
|
|
||||||
gtk_window_set_title(GTK_WINDOW(window), title);
|
gtk_window_set_title(GTK_WINDOW(window), title);
|
||||||
|
@ -96,7 +96,7 @@ void uxsel_input_remove(int id);
|
|||||||
|
|
||||||
/* uxcfg.c */
|
/* uxcfg.c */
|
||||||
struct controlbox;
|
struct controlbox;
|
||||||
void unix_setup_config_box(struct controlbox *b, int midsession, void *window);
|
void unix_setup_config_box(struct controlbox *b, int midsession);
|
||||||
|
|
||||||
/* gtkcfg.c */
|
/* gtkcfg.c */
|
||||||
void gtk_setup_config_box(struct controlbox *b, int midsession, void *window);
|
void gtk_setup_config_box(struct controlbox *b, int midsession, void *window);
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
#include "dialog.h"
|
#include "dialog.h"
|
||||||
#include "storage.h"
|
#include "storage.h"
|
||||||
|
|
||||||
void unix_setup_config_box(struct controlbox *b, int midsession, void *win)
|
void unix_setup_config_box(struct controlbox *b, int midsession)
|
||||||
{
|
{
|
||||||
struct controlset *s;
|
struct controlset *s;
|
||||||
union control *c;
|
union control *c;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user