mirror of
https://github.com/kanjitalk755/macemu.git
synced 2025-08-05 06:26:32 +00:00
fit the style better
This commit is contained in:
@@ -72,11 +72,11 @@ static void add_volume_entry_guessed(const char * filename);
|
||||
#endif
|
||||
|
||||
struct opt_desc {
|
||||
opt_desc(int l, GCallback f, GtkWidget **s=NULL) : label_id(l), func(f), save_ref(s) {}
|
||||
|
||||
int label_id;
|
||||
GtkSignalFunc func;
|
||||
GtkWidget ** save_ref;
|
||||
|
||||
opt_desc(int label_id, GCallback func, GtkWidget **save_ref=NULL) : label_id(label_id), func(func), save_ref(save_ref) { }
|
||||
};
|
||||
|
||||
struct combo_desc {
|
||||
|
@@ -105,11 +105,11 @@ gchar * tchar_to_g_utf8(const TCHAR * str) {
|
||||
|
||||
|
||||
struct opt_desc {
|
||||
opt_desc(int l, GCallback f, GtkWidget **s=NULL) : label_id(l), func(f), save_ref(s) {}
|
||||
|
||||
int label_id;
|
||||
GtkSignalFunc func;
|
||||
GtkWidget ** save_ref;
|
||||
|
||||
opt_desc(int label_id, GCallback func, GtkWidget **save_ref=NULL) : label_id(label_id), func(func), save_ref(save_ref) { }
|
||||
};
|
||||
|
||||
struct combo_desc {
|
||||
|
@@ -73,11 +73,11 @@ static void add_volume_entry_guessed(const char * filename);
|
||||
#endif
|
||||
|
||||
struct opt_desc {
|
||||
opt_desc(int l, GCallback f, GtkWidget **s=NULL) : label_id(l), func(f), save_ref(s) {}
|
||||
|
||||
int label_id;
|
||||
GCallback func;
|
||||
GtkWidget ** save_ref;
|
||||
|
||||
opt_desc(int label_id, GCallback func, GtkWidget **save_ref=NULL) : label_id(label_id), func(func), save_ref(save_ref) { }
|
||||
};
|
||||
|
||||
struct combo_desc {
|
||||
|
Reference in New Issue
Block a user