Hi all,<br><br>I&#39;m using an updated CVS version of VTK.<br><br>First thing I noticed, the file build_vtk/GUISupport/Qt/Chart/vtkQtChartExport.h (generated during build) was not copied across in the installation process.<br>
<br>Second thing, the QT classes use the following syntax<br>class Whatnot<br>{<br>&nbsp; signals:<br>&nbsp;&nbsp; etc;<br>&nbsp; public slots:<br>&nbsp;&nbsp; etc;<br>};<br><br>This conflicts with my project which uses boost::signals.&nbsp; From QT4, they have supported the following syntax:<br>
<br>class Whatnot<br>{<br>&nbsp; Q_SIGNALS:<br>&nbsp;&nbsp;&nbsp;&nbsp; etc;<br>public Q_SLOTS:<br>&nbsp;&nbsp;&nbsp;&nbsp; etc;<br>};<br><br><br>Can we change it to the new syntax?&nbsp; I will have to go ahead and do it in my copy anyway, but its going to be a pain each time I update my copy.<br>
<br>thanks<br>Paul<br><br>