Fix formatting.

Signed-off-by: Chris Michael <devilhorns@comcast.net>
This commit is contained in:
Chris Michael 2013-06-06 04:29:42 +01:00
parent b951b98d47
commit 97a425b52d
1 changed files with 6 additions and 5 deletions

View File

@ -3,13 +3,14 @@
typedef struct _Ecore_Evas_Interface_Wayland Ecore_Evas_Interface_Wayland;
struct _Ecore_Evas_Interface_Wayland {
struct _Ecore_Evas_Interface_Wayland
{
Ecore_Evas_Interface base;
void (*resize)(Ecore_Evas *ee, int location);
void (*move)(Ecore_Evas *ee, int x, int y);
void (*pointer_set)(Ecore_Evas *ee, int hot_x, int hot_y);
void (*type_set)(Ecore_Evas *ee, int type);
void (*resize)(Ecore_Evas *ee, int location);
void (*move)(Ecore_Evas *ee, int x, int y);
void (*pointer_set)(Ecore_Evas *ee, int hot_x, int hot_y);
void (*type_set)(Ecore_Evas *ee, int type);
Ecore_Wl_Window* (*window_get)(const Ecore_Evas *ee);
};