]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
The method AcceptParameters() should accept expression as argument
authorasl <asl@opencascade.com>
Fri, 27 Nov 2009 09:59:34 +0000 (09:59 +0000)
committerasl <asl@opencascade.com>
Fri, 27 Nov 2009 09:59:34 +0000 (09:59 +0000)
src/SalomeApp/SalomeApp_Notebook.cxx
src/SalomeApp/SalomeApp_Notebook.h

index 4c12539f5c7a672f78cadb79a24601b7a4fcb6fb..e63b21792145ea4d8285e7b1f05d5e81882ef687 100644 (file)
@@ -165,9 +165,9 @@ QStringList SalomeApp_Notebook::parameters() const
   return convert( myNotebook->Parameters() );
 }
 
-QStringList SalomeApp_Notebook::absentParameters() const
+QStringList SalomeApp_Notebook::absentParameters( const QString& theExpr ) const
 {
-  return convert( myNotebook->AbsentParameters() );
+  return convert( myNotebook->AbsentParameters( theExpr.toLatin1().constData() ) );
 }
 
 void SalomeApp_Notebook::setParameters( SALOME::ParameterizedObject_ptr theObject, int theCount, QAbstractSpinBox* theFirstSpin, ... )
index a628ce6d24575e49e9ea89bdee430e0936382684..05c757a007d1873e63a1ea70012da6dced66c88d 100644 (file)
@@ -57,7 +57,7 @@ public:
   void rename( const QString& theOldName, const QString& theNewName );
 
   QStringList parameters() const;
-  QStringList absentParameters() const;
+  QStringList absentParameters( const QString& theExpr ) const;
 
   void setParameters( SALOME::ParameterizedObject_ptr theObject, int theCount, QAbstractSpinBox* theFirstSpin, ... );