Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/kactus2/kactus2dev
Browse files Browse the repository at this point in the history
  • Loading branch information
hagantsa committed Jul 17, 2024
2 parents 84f654d + 2329eac commit c647d49
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 16 deletions.
2 changes: 0 additions & 2 deletions Kactus2.vcxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2914,8 +2914,6 @@ CreateHelp
</QtMoc>
</ItemGroup>
<ItemGroup>
<None Include="ClassDiagram2.cd" />
<None Include="ClassDiagram21.cd" />
<None Include="common\graphicsItems\ConnectionItem.inl" />
<None Include="wizards\common\IPXactElementComparator.inl" />
<None Include="wizards\common\ListComparator.inl" />
Expand Down
2 changes: 0 additions & 2 deletions Kactus2.vcxproj.filters
Original file line number Diff line number Diff line change
Expand Up @@ -5835,8 +5835,6 @@
<None Include="common\graphicsItems\ConnectionItem.inl">
<Filter>Source Files\common\graphicsItems</Filter>
</None>
<None Include="ClassDiagram2.cd" />
<None Include="ClassDiagram21.cd" />
</ItemGroup>
<ItemGroup>
<Image Include="appicon.ico" />
Expand Down
5 changes: 1 addition & 4 deletions common/graphicsItems/ConnectionEndpoint.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,7 @@ bool ConnectionEndpoint::canConnect(ConnectionEndpoint const* other) const
return false;
}

// ConnectionEndpoint:: is crucial, becuse omitting it leads to isConnectionValid using wrong "this" value;
// as an example, if ConnectionEndpoint is of type OffPageConnectorItem, the isConnectionValid will be called on
// parent connector, so not off page connection will be checked, but its parent connector.
return ConnectionEndpoint::isConnectionValid(other);
return isConnectionValid(other);
}

//-----------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion library/HierarchyView/hierarchyfilter.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ bool HierarchyFilter::filterAcceptsRow(int sourceRow, QModelIndex const& sourceP
}

if (auto document = getLibraryInterface()->getModelReadOnly(item->getVLNV());
checkRevision(document->getRevision()) == false || checkTags(document) == false)
!document || checkRevision(document->getRevision()) == false || checkTags(document) == false)
{
return false;
}
Expand Down
14 changes: 7 additions & 7 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.13.517.0
#define VERSION_FULL 3.13.524.0

#define VERSION_BASEYEAR 0
#define VERSION_DATE "2024-07-12"
#define VERSION_TIME "09:50:38"
#define VERSION_TIME "16:14:01"

#define VERSION_MAJOR 3
#define VERSION_MINOR 13
#define VERSION_BUILDNO 517
#define VERSION_BUILDNO 524
#define VERSION_EXTEND 0

#define VERSION_FILE 3,13,517,0
#define VERSION_PRODUCT 3,13,517,0
#define VERSION_FILESTR "3,13,517,0"
#define VERSION_PRODUCTSTR "3,13,517,0"
#define VERSION_FILE 3,13,524,0
#define VERSION_PRODUCT 3,13,524,0
#define VERSION_FILESTR "3,13,524,0"
#define VERSION_PRODUCTSTR "3,13,524,0"

#endif

0 comments on commit c647d49

Please sign in to comment.