From b31770cfb61272f0bcf148198d1b95ef445fe079 Mon Sep 17 00:00:00 2001
From: LAPTOP-SNT8I5JK\Boounion <Chenluhua@qq.com>
Date: 星期四, 21 八月 2025 10:56:53 +0800
Subject: [PATCH] 1.完善可折叠ListCtrl; 2.l加载Job时,根据ProcessID设置ControlJob的PJ列表 3.ControlJob对话框完善;

---
 SourceCode/Bond/Servo/PageLog.cpp |    9 +++++++--
 1 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/SourceCode/Bond/Servo/PageLog.cpp b/SourceCode/Bond/Servo/PageLog.cpp
index 7fe626a..c5cd4a9 100644
--- a/SourceCode/Bond/Servo/PageLog.cpp
+++ b/SourceCode/Bond/Servo/PageLog.cpp
@@ -79,8 +79,13 @@
 							else {
 								CString strTemp = strText;
 								strTemp.TrimRight();
-								bMatch = std::regex_match((LPTSTR)(LPCTSTR)strTemp,
-									std::regex((LPTSTR)(LPCTSTR)m_strFilterText));
+								try {
+									bMatch = std::regex_match((LPTSTR)(LPCTSTR)strTemp,
+										std::regex((LPTSTR)(LPCTSTR)m_strFilterText));
+								}
+								catch (const std::regex_error& e) {
+
+								}
 							}
 							if (m_filterMode == FilterMode::Exclude) {
 								bMatch = !bMatch;

--
Gitblit v1.9.3