diff options
author | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-08-30 10:17:25 +0200 |
---|---|---|
committer | Hanspeter Portner <dev@open-music-kontrollers.ch> | 2017-08-30 10:17:25 +0200 |
commit | 580cafacbcf56f33f97f25d2da472b9f6eef8b76 (patch) | |
tree | b36ec7ae2c46d1cf56ea319daf88ced100881fde /include | |
parent | 7f0a26457f33df2e723859ade63b58963c54e84e (diff) | |
download | synthpod-580cafacbcf56f33f97f25d2da472b9f6eef8b76.tar.xz |
remove unused properties.
Diffstat (limited to 'include')
-rw-r--r-- | include/synthpod_private.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/include/synthpod_private.h b/include/synthpod_private.h index f97dc21f..6a616095 100644 --- a/include/synthpod_private.h +++ b/include/synthpod_private.h @@ -361,9 +361,6 @@ struct _reg_t { reg_item_t dsp_profiling; reg_item_t cpus_available; reg_item_t cpus_used; - reg_item_t grid_cols; - reg_item_t grid_rows; - reg_item_t pane_left; reg_item_t quit; reg_item_t system_ports; @@ -636,9 +633,6 @@ sp_regs_init(reg_t *regs, LilvWorld *world, LV2_URID_Map *map) _register(®s->synthpod.dsp_profiling, world, map, SYNTHPOD_PREFIX"DSPProfiling"); _register(®s->synthpod.cpus_available, world, map, SYNTHPOD_PREFIX"CPUsAvailable"); _register(®s->synthpod.cpus_used, world, map, SYNTHPOD_PREFIX"CPUsUsed"); - _register(®s->synthpod.grid_cols, world, map, SYNTHPOD_PREFIX"gridCols"); - _register(®s->synthpod.grid_rows, world, map, SYNTHPOD_PREFIX"gridRows"); - _register(®s->synthpod.pane_left, world, map, SYNTHPOD_PREFIX"paneLeft"); _register(®s->synthpod.quit, world, map, SYNTHPOD_PREFIX"quit"); _register(®s->synthpod.system_ports, world, map, SYNTHPOD_PREFIX"systemPorts"); @@ -877,9 +871,6 @@ sp_regs_deinit(reg_t *regs) _unregister(®s->synthpod.dsp_profiling); _unregister(®s->synthpod.cpus_available); _unregister(®s->synthpod.cpus_used); - _unregister(®s->synthpod.grid_cols); - _unregister(®s->synthpod.grid_rows); - _unregister(®s->synthpod.pane_left); _unregister(®s->synthpod.quit); _unregister(®s->synthpod.system_ports); |