Skip to content

Commit

Permalink
Merge branch 'main' into EDA-3200
Browse files Browse the repository at this point in the history
  • Loading branch information
ravikiranchollangi authored Sep 13, 2024
2 parents c7e8bac + 37ea728 commit 4d43879
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ set(VERSION_MINOR 0)
# Add the spdlog directory to the include path
include_directories(${CMAKE_CURRENT_SOURCE_DIR}/third_party/spdlog/include ${CMAKE_CURRENT_SOURCE_DIR}/third_party/exprtk ${CMAKE_CURRENT_SOURCE_DIR}/third_party/scope_guard)

set(VERSION_PATCH 426)
set(VERSION_PATCH 427)


option(
Expand Down
2 changes: 1 addition & 1 deletion src/InteractivePathAnalysis/NCriticalPathToolsWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ void NCriticalPathToolsWidget::setupCriticalPathsOptionsMenu(
m_cbHighlightMode->addItem(item.c_str());
}

addRowToFormLayout(formLayout, tr("Hight light mode:"), m_cbHighlightMode);
addRowToFormLayout(formLayout, tr("Highlight mode:"), m_cbHighlightMode);

//
m_cbDrawCritPathContour = new QCheckBox;
Expand Down
2 changes: 1 addition & 1 deletion src/InteractivePathAnalysis/client/GateIO.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ GateIO::GateIO(const NCriticalPathParametersPtr& parameters)
GateIO::~GateIO() {}

void GateIO::onHightLightModeChanged() {
requestPathItemsHighLight(m_lastPathItems, "hight light mode changed");
requestPathItemsHighLight(m_lastPathItems, "highlight mode changed");
}

void GateIO::onServerPortDetected(int serverPortNum) {
Expand Down

0 comments on commit 4d43879

Please sign in to comment.