mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-06 03:50:02 +02:00
Fixes action owner usage
This commit is contained in:
parent
a8abf12ede
commit
b22574ea9c
26 changed files with 132 additions and 125 deletions
|
@ -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.
|
||||
|
@ -31,7 +31,7 @@ public class ZoomInAAction extends DockingAction {
|
|||
private MemviewProvider provider;
|
||||
|
||||
public ZoomInAAction(MemviewProvider provider) {
|
||||
super("Zoom In (Addrs)", provider.getName());
|
||||
super("Zoom In (Addrs)", provider.getOwner());
|
||||
this.provider = provider;
|
||||
setEnabled(true);
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
@ -31,7 +31,7 @@ public class ZoomInTAction extends DockingAction {
|
|||
private MemviewProvider provider;
|
||||
|
||||
public ZoomInTAction(MemviewProvider provider) {
|
||||
super("Zoom In (Time)", provider.getName());
|
||||
super("Zoom In (Time)", provider.getOwner());
|
||||
this.provider = provider;
|
||||
setEnabled(true);
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
@ -31,7 +31,7 @@ public class ZoomOutAAction extends DockingAction {
|
|||
private MemviewProvider provider;
|
||||
|
||||
public ZoomOutAAction(MemviewProvider provider) {
|
||||
super("Zoom Out (Addrs)", provider.getName());
|
||||
super("Zoom Out (Addrs)", provider.getOwner());
|
||||
this.provider = provider;
|
||||
setEnabled(true);
|
||||
|
||||
|
|
|
@ -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.
|
||||
|
@ -31,7 +31,7 @@ public class ZoomOutTAction extends DockingAction {
|
|||
private MemviewProvider provider;
|
||||
|
||||
public ZoomOutTAction(MemviewProvider provider) {
|
||||
super("Zoom Out (Time)", provider.getName());
|
||||
super("Zoom Out (Time)", provider.getOwner());
|
||||
this.provider = provider;
|
||||
setEnabled(true);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue