]> SALOME platform Git repositories - tools/install.git/commitdiff
Salome HOME
Implement features:
authorvsr <vsr@opencascade.com>
Tue, 26 Dec 2006 14:56:25 +0000 (14:56 +0000)
committervsr <vsr@opencascade.com>
Tue, 26 Dec 2006 14:56:25 +0000 (14:56 +0000)
- install and build SALOME module sources
- install all products from sources

bin/SALOME_InstallWizard
src/SALOME_ProductsView.cxx

index 7850d8fc6db5577e346837dba6452663033df876..e80a490d57397d9be235ee98498d2c3b218bbaf7 100755 (executable)
Binary files a/bin/SALOME_InstallWizard and b/bin/SALOME_InstallWizard differ
index 8bb8161fbf306b8a5fe6a3692fc7438133d286fd..6c2ee33b05b18bfea75e89ccd96e74f934ccc14d 100644 (file)
@@ -7,6 +7,7 @@
 
 #include "SALOME_ProductsView.hxx"
 #include <qstringlist.h>
+#include <qregexp.h>
 
 // ================================================================
 /*!
@@ -386,7 +387,7 @@ void ProductsView::setItemEnabled( QCheckListItem* item, const bool enable )
 // ================================================================
 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 )