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( source_group(
"CommandFeature\\SsiHub" "CommandFeature\\Osdu"
FILES ${SOURCE_GROUP_HEADER_FILES} ${SOURCE_GROUP_SOURCE_FILES} FILES ${SOURCE_GROUP_HEADER_FILES} ${SOURCE_GROUP_SOURCE_FILES}
${CMAKE_CURRENT_LIST_DIR}/CMakeLists_files.cmake ${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 ); 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 ) if ( m_wellPathGeometry.notNull() && m_wellPathGeometry->rkbDiff() > 0.0 )
{ {
ssihubGroup->add( &m_airGap ); wellInfoGroup->add( &m_airGap );
} }
if ( m_wellPathGeometry.notNull() && m_wellPathGeometry->hasDatumElevation() ) 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" ); caf::PdmUiGroup* formationFileInfoGroup = uiOrdering.addNewGroup( "Well Picks" );
formationFileInfoGroup->add( &m_wellPathFormationFilePath ); formationFileInfoGroup->add( &m_wellPathFormationFilePath );

View File

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