GP-5557 Composite editor transaction and update notification fixes

This commit is contained in:
ghidra1 2025-04-09 21:40:36 -04:00
parent 694b3b46ce
commit 0ef28cb54b
85 changed files with 703 additions and 633 deletions

View file

@ -4,9 +4,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@ -217,8 +217,8 @@ public class DBTraceDataTypeManager extends ProgramBasedDataTypeManagerDB
}
@Override
public void endTransaction(int transactionID, boolean commit) {
trace.endTransaction(transactionID, commit);
public boolean endTransaction(int transactionID, boolean commit) {
return trace.endTransaction(transactionID, commit);
}
@Override

View file

@ -1173,8 +1173,8 @@ public class DBTraceProgramView implements TraceProgramView {
}
@Override
public void endTransaction(int transactionID, boolean commit) {
trace.endTransaction(transactionID, commit);
public boolean endTransaction(int transactionID, boolean commit) {
return trace.endTransaction(transactionID, commit);
}
@Override

View file

@ -4,9 +4,9 @@
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*
* http://www.apache.org/licenses/LICENSE-2.0
*
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@ -384,8 +384,8 @@ public class DBTraceProgramViewRegisters implements TraceProgramView {
}
@Override
public void endTransaction(int transactionID, boolean commit) {
view.endTransaction(transactionID, commit);
public boolean endTransaction(int transactionID, boolean commit) {
return view.endTransaction(transactionID, commit);
}
@Override