From 23a6dbd1c8990ba6414d6f966e3a66bcd65fc8d7 Mon Sep 17 00:00:00 2001 From: sjanzou Date: Tue, 23 Sep 2025 03:12:06 -0600 Subject: [PATCH 1/3] matrix.h had unknown function nrows() and ncols() that should not have compiled --- include/wex/matrix.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/wex/matrix.h b/include/wex/matrix.h index 952da002..48605206 100644 --- a/include/wex/matrix.h +++ b/include/wex/matrix.h @@ -175,8 +175,8 @@ class wxMatrix { wxMatrix old(*this); Resize(nr, nc); Fill(val); - for (size_t r = 0; r < nr && r < old.nrows(); r++) - for (size_t c = 0; c < nc && c < old.ncols(); c++) + for (size_t r = 0; r < nr && r < old.Rows(); r++) + for (size_t c = 0; c < nc && c < old.Cols(); c++) At(r, c) = old(r, c); } From 0bb86b4ad47569188628f22fac50c55ff4710eb4 Mon Sep 17 00:00:00 2001 From: sjanzou Date: Tue, 23 Sep 2025 03:20:13 -0600 Subject: [PATCH 2/3] Update wxWidgets version in workflow from 3.2.4 to 3.2.8 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e8cf79f..6973a6ad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: pull_request: env: - WX_VERSION: '3.2.4' + WX_VERSION: '3.2.8' DEFAULT_BRANCH: develop From 6ba2a492765a984045689767e52c40bf58f5bd0e Mon Sep 17 00:00:00 2001 From: Steven Janzou Date: Wed, 24 Sep 2025 00:41:26 -0600 Subject: [PATCH 3/3] Update workflow to wxWidgets 3.2.8.1 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6973a6ad..aa1dfa8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ on: pull_request: env: - WX_VERSION: '3.2.8' + WX_VERSION: '3.2.8.1' DEFAULT_BRANCH: develop