13
0

No-op; formatting.

git-svn-id: svn://localhost/ardour2/branches/3.0@10626 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Carl Hetherington 2011-11-15 21:06:15 +00:00
parent a609ea41db
commit b853c0133d

View File

@ -461,15 +461,17 @@ again:
/*scheduled call to dispatcher*/
if(vstfx->dispatcher_wantcall)
{
vstfx->dispatcher_retval = vstfx->plugin->dispatcher( vstfx->plugin,
vstfx->dispatcher_opcode,
vstfx->dispatcher_index,
vstfx->dispatcher_val,
vstfx->dispatcher_ptr,
vstfx->dispatcher_opt );
vstfx->dispatcher_wantcall = 0;
if (vstfx->dispatcher_wantcall) {
vstfx->dispatcher_retval = vstfx->plugin->dispatcher (
vstfx->plugin,
vstfx->dispatcher_opcode,
vstfx->dispatcher_index,
vstfx->dispatcher_val,
vstfx->dispatcher_ptr,
vstfx->dispatcher_opt
);
vstfx->dispatcher_wantcall = 0;
pthread_cond_signal (&vstfx->plugin_dispatcher_called);
}
@ -659,15 +661,17 @@ int vstfx_create_editor (VSTFX* vstfx)
/*Create an XWindow for the plugin to inhabit*/
parent_window = XCreateSimpleWindow(LXVST_XDisplay,
DefaultRootWindow(LXVST_XDisplay),
0,
0,
x_size,
y_size,
0,
0,
0);
parent_window = XCreateSimpleWindow (
LXVST_XDisplay,
DefaultRootWindow(LXVST_XDisplay),
0,
0,
x_size,
y_size,
0,
0,
0
);
/*Select the events we are interested in receiving - we need Substructure notify so that
if the plugin resizes its window - e.g. Loomer Manifold then we get a message*/