- install and build SALOME module sources
- install all products from sources
#include "SALOME_ProductsView.hxx"
#include <qstringlist.h>
+#include <qregexp.h>
// ================================================================
/*!
// ================================================================
QCheckListItem* ProductsView::findBinItem( const QString& srcName )
{
- QString binName = srcName.lower().replace( "src", "bin" );
+ QString binName = srcName.lower().replace( QRegExp("src"), "bin" );
QCheckListItem* subItem = (QCheckListItem*)( firstChild() );
while( subItem ) {
if ( subItem->text().lower() == binName )