gnucash stable: Multiple changes pushed

Christopher Lam clam at code.gnucash.org
Fri Jul 14 22:04:28 EDT 2023


Updated	 via  https://github.com/Gnucash/gnucash/commit/49b47f9d (commit)
	 via  https://github.com/Gnucash/gnucash/commit/513d5442 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/4c231c5c (commit)
	 via  https://github.com/Gnucash/gnucash/commit/96707e5e (commit)
	 via  https://github.com/Gnucash/gnucash/commit/5f20e633 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/0e484889 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/e48e6e2a (commit)
	 via  https://github.com/Gnucash/gnucash/commit/f1c70a00 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/b0e5316b (commit)
	 via  https://github.com/Gnucash/gnucash/commit/24371021 (commit)
	 via  https://github.com/Gnucash/gnucash/commit/ea6181fd (commit)
	from  https://github.com/Gnucash/gnucash/commit/c405ba2c (commit)



commit 49b47f9da7887ef19842d3f6f13ffb4b9fe71d0e
Merge: c405ba2cc0 513d5442bb
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Sat Jul 15 10:03:36 2023 +0800

    Merge branch 'import-cpp' into stable #1706

commit 513d5442bb5ee1c54ec4a91474f2b441b715a0dd
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Thu Jul 13 22:39:48 2023 +0800

    [gnc-ofx-import.cpp] convert to cpp

commit 4c231c5c35d94f783438a08933e83a6897db4477
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Fri Jul 14 15:52:13 2023 +0800

    [import-parse.cpp] convert to cpp

commit 96707e5eeed5fbaf7ba43231c219ee929a37f6b3
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Thu Jul 13 22:10:13 2023 +0800

    [import-utilities.cpp] convert to cpp

commit 5f20e633f24d7b87c32958eaee6025e4d732c9bd
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Thu Jul 13 22:07:56 2023 +0800

    [import-format-dialog.cpp] convert to cpp

commit 0e484889645877be5b8b22014202cf4ceaf7c846
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Thu Jul 13 22:05:41 2023 +0800

    [import-account-matcher.cpp] convert to cpp

commit e48e6e2af9f23a6beebcc6a936dfbdc33ac18258
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Thu Jul 13 22:02:08 2023 +0800

    [import-commodity-matcher.cpp] convert to cpp

commit f1c70a00ad5de12a5674c8b24ca78b8ad835dfbd
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Thu Jul 13 22:00:40 2023 +0800

    [import-settings.cpp] convert to cpp

commit b0e5316b916c2cdd5097b42305d8632dcceb72a7
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Thu Jul 13 21:54:36 2023 +0800

    [import-pending-matches.cpp] convert to cpp

commit 243710218c7d16494d2060c8034cd6180c7042d0
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Thu Jul 13 21:52:54 2023 +0800

    [import-match-picker.cpp] convert to cpp

commit ea6181fdf7d12ddd50c1beb852d0e60325c4aa18
Author: Christopher Lam <christopher.lck at gmail.com>
Date:   Thu Jul 13 21:45:53 2023 +0800

    [import-main-matcher.cpp] convert to cpp



Summary of changes:
 gnucash/import-export/CMakeLists.txt               | 18 ++---
 ...ccount-matcher.c => import-account-matcher.cpp} |  7 +-
 ...dity-matcher.c => import-commodity-matcher.cpp} |  4 +-
 gnucash/import-export/import-commodity-matcher.h   |  9 +++
 ...rt-format-dialog.c => import-format-dialog.cpp} |  4 +-
 ...port-main-matcher.c => import-main-matcher.cpp} | 86 ++++++++++++----------
 gnucash/import-export/import-main-matcher.h        |  9 ++-
 ...port-match-picker.c => import-match-picker.cpp} |  5 +-
 gnucash/import-export/import-match-picker.h        |  7 ++
 .../{import-parse.c => import-parse.cpp}           | 27 ++++---
 gnucash/import-export/import-parse.h               | 10 ++-
 ...ending-matches.c => import-pending-matches.cpp} |  5 +-
 .../{import-settings.c => import-settings.cpp}     |  0
 .../{import-utilities.c => import-utilities.cpp}   |  0
 gnucash/import-export/ofx/CMakeLists.txt           |  2 +-
 .../ofx/{gnc-ofx-import.c => gnc-ofx-import.cpp}   | 24 +++---
 gnucash/import-export/ofx/gnc-ofx-import.h         |  9 +++
 gnucash/import-export/test/CMakeLists.txt          |  4 +-
 po/POTFILES.in                                     | 20 ++---
 19 files changed, 142 insertions(+), 108 deletions(-)
 rename gnucash/import-export/{import-account-matcher.c => import-account-matcher.cpp} (98%)
 rename gnucash/import-export/{import-commodity-matcher.c => import-commodity-matcher.cpp} (97%)
 rename gnucash/import-export/{import-format-dialog.c => import-format-dialog.cpp} (98%)
 rename gnucash/import-export/{import-main-matcher.c => import-main-matcher.cpp} (97%)
 rename gnucash/import-export/{import-match-picker.c => import-match-picker.cpp} (99%)
 rename gnucash/import-export/{import-parse.c => import-parse.cpp} (93%)
 rename gnucash/import-export/{import-pending-matches.c => import-pending-matches.cpp} (97%)
 rename gnucash/import-export/{import-settings.c => import-settings.cpp} (100%)
 rename gnucash/import-export/{import-utilities.c => import-utilities.cpp} (100%)
 rename gnucash/import-export/ofx/{gnc-ofx-import.c => gnc-ofx-import.cpp} (98%)



More information about the gnucash-patches mailing list