mirror of
https://github.com/brl/mutter.git
synced 2024-11-22 16:10:41 -05:00
Constify the cursor geometry in ::cursor-event
We don't allow changing the cursor geometry inside the ::cursor-event signal handlers; for starters, it would make binding the signal a huge mess, and it would also potentially break the whole actor.
This commit is contained in:
parent
2d166b250c
commit
2714397fd5
@ -76,10 +76,11 @@ struct _ClutterTextClass
|
||||
ClutterActorClass parent_class;
|
||||
|
||||
/*< public >*/
|
||||
void (* text_changed) (ClutterText *self);
|
||||
void (* activate) (ClutterText *self);
|
||||
void (* cursor_event) (ClutterText *self,
|
||||
ClutterGeometry *geometry);
|
||||
/* signals, not vfuncs */
|
||||
void (* text_changed) (ClutterText *self);
|
||||
void (* activate) (ClutterText *self);
|
||||
void (* cursor_event) (ClutterText *self,
|
||||
const ClutterGeometry *geometry);
|
||||
|
||||
/*< private >*/
|
||||
/* padding for future expansion */
|
||||
|
Loading…
Reference in New Issue
Block a user