]> SALOME platform Git repositories - modules/gui.git/commitdiff
Salome HOME
0021135: EDF 1753 OTHER: Bug in the python dump due to iparameters
authorvsr <vsr@opencascade.com>
Tue, 18 Jan 2011 12:12:36 +0000 (12:12 +0000)
committervsr <vsr@opencascade.com>
Tue, 18 Jan 2011 12:12:36 +0000 (12:12 +0000)
src/SUIT/SUIT_TreeModel.cxx

index 969c61201c554eb8619b41308a2f24f419c74880..c60b6be2785cf1c6f8bcff770119337af658befb 100755 (executable)
@@ -1435,6 +1435,7 @@ SUIT_ProxyModel::SUIT_ProxyModel( QObject* parent )
   SUIT_TreeModel* model = new SUIT_TreeModel( this );
   connect( model, SIGNAL( modelUpdated() ), this, SIGNAL( modelUpdated() ) );
   setSourceModel( model );
+  setDynamicSortFilter( true );
 }
 
 /*!
@@ -1449,6 +1450,7 @@ SUIT_ProxyModel::SUIT_ProxyModel( SUIT_DataObject* root, QObject* parent )
   SUIT_TreeModel* model = new SUIT_TreeModel( root, this );
   connect( model, SIGNAL( modelUpdated() ), this, SIGNAL( modelUpdated() ) );
   setSourceModel( model );
+  setDynamicSortFilter( true );
 }
 
 /*!
@@ -1462,6 +1464,7 @@ SUIT_ProxyModel::SUIT_ProxyModel( SUIT_AbstractModel* model, QObject* parent )
 {
   connect( *model, SIGNAL( modelUpdated() ), this, SIGNAL( modelUpdated() ) );
   setSourceModel( *model );
+  setDynamicSortFilter( true );
 }
 
 /*!