extensions: panel_config->resource => wl_surface_res.

Change the name to something less ambigious.
This commit is contained in:
S. Christoffer Eliesen 2015-12-20 12:42:10 +01:00
parent 3777c8993b
commit 6db0f6f80f
2 changed files with 8 additions and 6 deletions

View file

@ -9,13 +9,15 @@
struct background_config {
wlc_handle output;
wlc_resource surface;
struct wl_resource *resource;
// we need the wl_resource of the surface in the destructor
struct wl_resource *wl_surface_res;
};
struct panel_config {
wlc_handle output;
wlc_resource surface;
struct wl_resource *resource;
// we need the wl_resource of the surface in the destructor
struct wl_resource *wl_surface_res;
};
struct desktop_shell_state {