Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/candidate-9.8.x' into candidate-…
Browse files Browse the repository at this point in the history
…9.10.x

Signed-off-by: Gordon Smith <[email protected]>
  • Loading branch information
GordonSmith committed Jan 30, 2025
2 parents f7151c6 + 84d86b3 commit f201ca1
Show file tree
Hide file tree
Showing 5 changed files with 154 additions and 59 deletions.
10 changes: 4 additions & 6 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -526,13 +526,11 @@ if(TOP_LEVEL_PROJECT)
!define MUI_STARTMENUPAGE_DEFAULTFOLDER \\\"${CPACK_PACKAGE_VENDOR_WITHOUT_TRADEMARK}\\\\${version}\\\\${CPACK_NSIS_DISPLAY_NAME}\\\"
!define MUI_FINISHPAGE_NOAUTOCLOSE
")

list ( APPEND CPACK_NSIS_CREATE_ICONS_EXTRA "
set (CPACK_NSIS_CREATE_ICONS_EXTRA "
CreateShortCut \\\"$SMPROGRAMS\\\\$STARTMENU_FOLDER\\\\ECL Command Prompt.lnk\\\" '%comspec%' '/k \\\"$INSTDIR\\\\ECLCmd.bat\\\"'
")
list ( APPEND CPACK_NSIS_DELETE_ICONS_EXTRA "
Delete \\\"$SMPROGRAMS\\\\$MUI_TEMP\\\\ECL CMD.lnk\\\"
")
")
set (CPACK_NSIS_DELETE_ICONS_EXTRA "Delete '$SMPROGRAMS\\\\$START_MENU\\\\ECL Command Prompt.lnk'")


set(CPACK_NSIS_MODIFY_PATH "ON")

Expand Down
3 changes: 1 addition & 2 deletions dali/base/sysinfologger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ class CSysInfoLoggerMsgIterator : public CSimpleInterfaceOf<ISysInfoLoggerMsgIte
}
virtual bool next() override
{
if (msgIter->next())
if (!msgIter->next())
return false;
return ensureMatch();
}
Expand Down Expand Up @@ -612,7 +612,6 @@ unsigned deleteOlderThanLogSysInfoMsg(bool visibleOnly, bool hiddenOnly, unsigne
// With visibleOnly/hiddenOnly option, use createSysInfoLoggerMsgFilter()
if (visibleOnly || hiddenOnly || day)
{
unsigned count = 0;
Owned<ISysInfoLoggerMsgFilter> msgFilter = createSysInfoLoggerMsgFilter(source);
if (hiddenOnly)
msgFilter->setHiddenOnly();
Expand Down
Loading

0 comments on commit f201ca1

Please sign in to comment.