Correct or remove ssihub references.

This commit is contained in:
Kristian Bendiksen 2024-07-29 09:45:44 +02:00
parent 6fb74654a1
commit 4aadf6e801
3 changed files with 5 additions and 10 deletions

View File

@ -28,7 +28,7 @@ list(APPEND COMMAND_QT_MOC_HEADERS
)
source_group(
"CommandFeature\\SsiHub"
"CommandFeature\\Osdu"
FILES ${SOURCE_GROUP_HEADER_FILES} ${SOURCE_GROUP_SOURCE_FILES}
${CMAKE_CURRENT_LIST_DIR}/CMakeLists_files.cmake
)

View File

@ -736,18 +736,18 @@ void RimWellPath::defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& ui
simWellGroup->add( &m_branchIndex );
}
caf::PdmUiGroup* ssihubGroup = uiOrdering.addNewGroup( "Well Info" );
caf::PdmUiGroup* wellInfoGroup = uiOrdering.addNewGroup( "Well Info" );
if ( m_wellPathGeometry.notNull() && m_wellPathGeometry->rkbDiff() > 0.0 )
{
ssihubGroup->add( &m_airGap );
wellInfoGroup->add( &m_airGap );
}
if ( m_wellPathGeometry.notNull() && m_wellPathGeometry->hasDatumElevation() )
{
ssihubGroup->add( &m_datumElevation );
wellInfoGroup->add( &m_datumElevation );
}
ssihubGroup->add( &m_unitSystem );
wellInfoGroup->add( &m_unitSystem );
caf::PdmUiGroup* formationFileInfoGroup = uiOrdering.addNewGroup( "Well Picks" );
formationFileInfoGroup->add( &m_wellPathFormationFilePath );

View File

@ -69,11 +69,6 @@ class PdmUiPropertyView;
class PdmUiItem;
} // namespace caf
namespace ssihub
{
class Interface;
}
namespace ads
{
class CDockWidget;