Skip to content

Commit

Permalink
[PERFECTIVE] Hide type definitions in component editor for now
Browse files Browse the repository at this point in the history
  • Loading branch information
epekkar committed Dec 8, 2023
1 parent c9144f4 commit b58d0c5
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 13 deletions.
11 changes: 6 additions & 5 deletions editors/ComponentEditor/componenteditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -612,11 +612,12 @@ void ComponentEditor::addHWItems(ComponentEditorRootItem* root,
root->addChildItem(createParametersItem(root));

auto docRevision = component_->getRevision();
if (docRevision == Document::Revision::Std22)
{
root->addChildItem(QSharedPointer<TypeDefinitionsItem>(new TypeDefinitionsItem(&navigationModel_,
libHandler_, component_, root)));
}
// TODO: Enable, when type definitions are supported.
// if (docRevision == Document::Revision::Std22)
// {
// root->addChildItem(QSharedPointer<TypeDefinitionsItem>(new TypeDefinitionsItem(&navigationModel_,
// libHandler_, component_, root)));
// }

root->addChildItem(QSharedPointer<ComponentEditorFileSetsItem>(new ComponentEditorFileSetsItem(
&navigationModel_, libHandler_, component_, referenceCounter_, parameterFinder_,
Expand Down
16 changes: 8 additions & 8 deletions version.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,20 @@
#ifndef VERSIONNO__H
#define VERSIONNO__H

#define VERSION_FULL 3.12.1142.0
#define VERSION_FULL 3.12.1143.0

#define VERSION_BASEYEAR 0
#define VERSION_DATE "2023-12-07"
#define VERSION_TIME "13:01:29"
#define VERSION_DATE "2023-12-08"
#define VERSION_TIME "07:56:48"

#define VERSION_MAJOR 3
#define VERSION_MINOR 12
#define VERSION_BUILDNO 1142
#define VERSION_BUILDNO 1143
#define VERSION_EXTEND 0

#define VERSION_FILE 3,12,1142,0
#define VERSION_PRODUCT 3,12,1142,0
#define VERSION_FILESTR "3,12,1142,0"
#define VERSION_PRODUCTSTR "3,12,1142,0"
#define VERSION_FILE 3,12,1143,0
#define VERSION_PRODUCT 3,12,1143,0
#define VERSION_FILESTR "3,12,1143,0"
#define VERSION_PRODUCTSTR "3,12,1143,0"

#endif

0 comments on commit b58d0c5

Please sign in to comment.