mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
Compilation fixes, bugs reported by DrMike -mig
This commit is contained in:
parent
8f56dbcab1
commit
6981cf6275
@ -1,3 +1,7 @@
|
|||||||
|
1998-04-16 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||||
|
|
||||||
|
* gwidget.c (x_radio_toggle): Never commit non-compilable code.
|
||||||
|
|
||||||
1998-04-15 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
1998-04-15 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||||
|
|
||||||
* gwidget.c (remove_hotkey, x_create_radio): Radio buttons should
|
* gwidget.c (remove_hotkey, x_create_radio): Radio buttons should
|
||||||
|
@ -30,6 +30,7 @@
|
|||||||
#define PORT_WANTS_ARGP 1
|
#define PORT_WANTS_ARGP 1
|
||||||
#define PORT_WIDGET_WANTS_HISTORY 0
|
#define PORT_WIDGET_WANTS_HISTORY 0
|
||||||
#define PORT_HAS_UPDATE_MARKS 1
|
#define PORT_HAS_UPDATE_MARKS 1
|
||||||
|
#define PORT_HAS_RADIO_TOGGLE 1
|
||||||
|
|
||||||
#define mi_getch() fprintf (stderr, "mi_getch is not implemented in this port\n")
|
#define mi_getch() fprintf (stderr, "mi_getch is not implemented in this port\n")
|
||||||
#define frontend_run_dlg(x) gtkrundlg_event (x)
|
#define frontend_run_dlg(x) gtkrundlg_event (x)
|
||||||
|
@ -161,8 +161,6 @@ x_radio_toggle (WRadio *radio)
|
|||||||
for (i = 0; i < radio->count; i++){
|
for (i = 0; i < radio->count; i++){
|
||||||
GtkBoxChild *bc = (GtkBoxChild *) children->data;
|
GtkBoxChild *bc = (GtkBoxChild *) children->data;
|
||||||
|
|
||||||
if (GTK_TOGGLE_BUTTON (bc->widget)->active)
|
|
||||||
gtk_toggle_button_toggled
|
|
||||||
gtk_toggle_button_set_state (GTK_TOGGLE_BUTTON (bc->widget), (i == radio->sel) ? 1 : 0);
|
gtk_toggle_button_set_state (GTK_TOGGLE_BUTTON (bc->widget), (i == radio->sel) ? 1 : 0);
|
||||||
children = children->next;
|
children = children->next;
|
||||||
}
|
}
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Date: 1998-04-15 22:34:13-0500\n"
|
"Date: 1998-04-16 13:12:28-0500\n"
|
||||||
"From: Miguel de Icaza,computo,622-4680 <miguel@metropolis.nuclecu.unam.mx>\n"
|
"From: Miguel de Icaza,computo,622-4680 <miguel@metropolis.nuclecu.unam.mx>\n"
|
||||||
"Content-Type: text/plain; charset=\n"
|
"Content-Type: text/plain; charset=\n"
|
||||||
"Xgettext-Options: --default-domain=mc --directory=.. --add-comments --keyword=_ --keyword=N_ --files-from=./POTFILES.in\n"
|
"Xgettext-Options: --default-domain=mc --directory=.. --add-comments --keyword=_ --keyword=N_ --files-from=./POTFILES.in\n"
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
1998-04-16 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||||
|
|
||||||
|
* widget.c (x_radio_toggle): New per-port variable: PORT_HAS_RADIO_TOGGLE
|
||||||
|
|
||||||
1998-04-15 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
1998-04-15 Miguel de Icaza <miguel@nuclecu.unam.mx>
|
||||||
|
|
||||||
* screen.c (GT): Assign two spaces for the minimum size of the
|
* screen.c (GT): Assign two spaces for the minimum size of the
|
||||||
|
@ -66,6 +66,10 @@
|
|||||||
# define x_radio_focus_item(r)
|
# define x_radio_focus_item(r)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef PORT_HAS_RADIO_TOGGLE
|
||||||
|
# define x_radio_toggle
|
||||||
|
#endif
|
||||||
|
|
||||||
static int button_event (Gpm_Event *event, WButton *b);
|
static int button_event (Gpm_Event *event, WButton *b);
|
||||||
|
|
||||||
int quote = 0;
|
int quote = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user