Skip to content

Commit

Permalink
Fix wrong RESQML2.2 Contact Element Reference qualified type
Browse files Browse the repository at this point in the history
  • Loading branch information
philippeVerney committed Apr 24, 2023
1 parent 694c171 commit 837d42d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ set (FESAPI_BINARY_DIR ${CMAKE_CURRENT_BINARY_DIR})
# version mechanism
set (Fesapi_VERSION_MAJOR 2)
set (Fesapi_VERSION_MINOR 7)
set (Fesapi_VERSION_PATCH 0)
set (Fesapi_VERSION_PATCH 1)
set (Fesapi_VERSION_TWEAK 0)

set (Fesapi_VERSION ${Fesapi_VERSION_MAJOR}.${Fesapi_VERSION_MINOR}.${Fesapi_VERSION_PATCH}.${Fesapi_VERSION_TWEAK})
Expand Down
2 changes: 1 addition & 1 deletion src/common/AbstractObject.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ gsoap_eml2_3::resqml22__ContactElement* AbstractObject::newContactElementReferen
result->ObjectVersion->assign(getVersion());
}
result->Title = getTitle();
result->QualifiedType = getContentType();
result->QualifiedType = getQualifiedType();

return result;
}
Expand Down

0 comments on commit 837d42d

Please sign in to comment.