forked from AuroraMiddleware/gtk
Do not use gbooleans to save some bits.
This commit is contained in:
parent
afa282f009
commit
bea2487d83
@ -76,10 +76,10 @@ typedef struct _ClipboardRequest ClipboardRequest;
|
|||||||
struct _ClipboardRequest
|
struct _ClipboardRequest
|
||||||
{
|
{
|
||||||
GtkTextBuffer *buffer;
|
GtkTextBuffer *buffer;
|
||||||
gboolean interactive;
|
guint interactive : 1;
|
||||||
gboolean default_editable;
|
guint default_editable : 1;
|
||||||
gboolean is_clipboard;
|
guint is_clipboard : 1;
|
||||||
gboolean replace_selection;
|
guint replace_selection : 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
|
Loading…
Reference in New Issue
Block a user