Browse Source

Fixes issue 3940

Add action name to call to super constructor (forgot to do this when switching
from the old action)

Change-Id: I22716834ecd9a14a3c36cf2c9c13b71f6d825923
Reviewed-on: http://gerrit.dmdirc.com/1035
Automatic-Compile: DMDirc Local Commits <dmdirc@googlemail.com>
Reviewed-by: Chris Smith <chris@dmdirc.com>
tags/0.6.4
Greboid 14 years ago
parent
commit
4a00957ace
1 changed files with 1 additions and 0 deletions
  1. 1
    0
      src/com/dmdirc/addons/ui_swing/textpane/TextPaneCopyAction.java

+ 1
- 0
src/com/dmdirc/addons/ui_swing/textpane/TextPaneCopyAction.java View File

@@ -45,6 +45,7 @@ public class TextPaneCopyAction extends AbstractAction {
45 45
      * @param textpane Textpane
46 46
      */
47 47
     public TextPaneCopyAction(final TextPane textpane) {
48
+        super("Copy");
48 49
         this.textpane = textpane;
49 50
     }
50 51
 

Loading…
Cancel
Save