Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/views/PasteTargetAction.java')
-rw-r--r--build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/views/PasteTargetAction.java9
1 files changed, 6 insertions, 3 deletions
diff --git a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/views/PasteTargetAction.java b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/views/PasteTargetAction.java
index bac70d0113f..b0f253b248f 100644
--- a/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/views/PasteTargetAction.java
+++ b/build/org.eclipse.cdt.make.ui/src/org/eclipse/cdt/make/ui/views/PasteTargetAction.java
@@ -49,10 +49,13 @@ public class PasteTargetAction extends SelectionListenerAction {
/**
* Constructor setting internal private fields and initializing the action.
*
- * @param shell - the shell in which to show any dialogs.
- * @param clipboard - system clipboard.
+ * @param shell
+ * - the shell in which to show any dialogs.
+ * @param clipboard
+ * - system clipboard.
+ * @since 7.3
*/
- protected PasteTargetAction(Shell shell, Clipboard clipboard) {
+ public PasteTargetAction(Shell shell, Clipboard clipboard) {
super(MakeUIPlugin.getResourceString("PasteTargetAction.label")); //$NON-NLS-1$
this.shell = shell;
this.clipboard = clipboard;

Back to the top