I updated the CVS today (I haven't done it for a while) and compiled. When I set the PV_PLUGIN_PATH for all my plugins the ParaView aborts (it works without loading plugins). Here is the diff that now works:<br><br>Index: Qt/Components/pqMainWindowCore.cxx<br>
===================================================================<br>RCS file: /cvsroot/ParaView3/ParaView3/Qt/Components/pqMainWindowCore.cxx,v<br>retrieving revision 1.266<br>diff -r1.266 pqMainWindowCore.cxx<br>987c987,994<br>
< toolbar->insertWidget(toolActions[1], display_color);<br>---<br>> if(toolActions.size() > 1)<br>> {<br>> toolbar->insertWidget(toolActions[1], display_color);<br>> }<br>> else<br>
> {<br>> toolbar->addWidget(display_color);<br>> }<br><br>Regards,<br>Paul<br>