mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
st: initialize static variables to NULL
https://bugzilla.gnome.org/show_bug.cgi?id=783484
This commit is contained in:
parent
ce262b36d4
commit
d5cac6559d
2 changed files with 3 additions and 3 deletions
|
|
@ -718,8 +718,8 @@ st_entry_key_focus_in (ClutterActor *actor)
|
|||
clutter_actor_grab_key_focus (priv->entry);
|
||||
}
|
||||
|
||||
static StEntryCursorFunc cursor_func;
|
||||
static gpointer cursor_func_data;
|
||||
static StEntryCursorFunc cursor_func = NULL;
|
||||
static gpointer cursor_func_data = NULL;
|
||||
|
||||
/**
|
||||
* st_entry_set_cursor_func: (skip)
|
||||
|
|
|
|||
|
|
@ -202,7 +202,7 @@ st_im_text_get_paint_volume (ClutterActor *self,
|
|||
return clutter_paint_volume_set_from_allocation (volume, self);
|
||||
}
|
||||
|
||||
static GdkWindow *event_window;
|
||||
static GdkWindow *event_window = NULL;
|
||||
|
||||
void
|
||||
st_im_text_set_event_window (GdkWindow *window)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue