X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FHYDROGUI%2FHYDROGUI_DataBrowser.cxx;h=2c16b0c6383c3efdc03373dc493ce0ad033d9aab;hb=f34b90e9e4e02ba65419134d5d37a2e42aecfabf;hp=714d2a16ae949234dda03e9322270d4436901149;hpb=7ec27726afa16572a7cab1d7936c8e899674050b;p=modules%2Fhydro.git diff --git a/src/HYDROGUI/HYDROGUI_DataBrowser.cxx b/src/HYDROGUI/HYDROGUI_DataBrowser.cxx index 714d2a16..2c16b0c6 100644 --- a/src/HYDROGUI/HYDROGUI_DataBrowser.cxx +++ b/src/HYDROGUI/HYDROGUI_DataBrowser.cxx @@ -60,7 +60,7 @@ HYDROGUI_DataBrowser::HYDROGUI_DataBrowser( HYDROGUI_Module* theModule, SUIT_Dat QString EntryCol = QObject::tr( "ENTRY_COLUMN" ); QString RefObjCol = tr( "REF_OBJECT_COLUMN" ); - QString BathymetryCol = tr( "BATHYMETRY_COLUMN" ); + QString AltitudeCol = tr( "ALTITUDE_COLUMN" ); SUIT_AbstractModel* treeModel = dynamic_cast( model() ); //RKV: treeModel->setSearcher( theModule->getApp() ); @@ -69,8 +69,8 @@ HYDROGUI_DataBrowser::HYDROGUI_DataBrowser( HYDROGUI_Module* theModule, SUIT_Dat treeModel->setAppropriate( EntryCol, Qtx::Toggled ); treeModel->registerColumn( 0, RefObjCol, HYDROGUI_DataObject::RefObjectId ); treeModel->setAppropriate( RefObjCol, Qtx::Toggled ); - treeModel->registerColumn( 0, BathymetryCol, HYDROGUI_DataObject::BathymetryId ); - treeModel->setAppropriate( BathymetryCol, Qtx::Toggled ); + treeModel->registerColumn( 0, AltitudeCol, HYDROGUI_DataObject::AltitudeObjId ); + treeModel->setAppropriate( AltitudeCol, Qtx::Toggled ); // Mantis issue 0020136: Drag&Drop in OB SUIT_ProxyModel* proxyModel = dynamic_cast(treeModel);