No-op; formatting.
authorCarl Hetherington <carl@carlh.net>
Tue, 15 Nov 2011 21:06:15 +0000 (21:06 +0000)
committerCarl Hetherington <carl@carlh.net>
Tue, 15 Nov 2011 21:06:15 +0000 (21:06 +0000)
git-svn-id: svn://localhost/ardour2/branches/3.0@10626 d708f5d6-7413-0410-9779-e7cbd77b26cf

gtk2_ardour/vstfxwin.cc

index a1a7d73909c7b40571ebbe79fc72101c539cdad3..c47e555a6c4bb69e11f74b5691abf7dbd69ca4dd 100755 (executable)
@@ -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*/