Skip to content

Commit 5465d6f

Browse files
committed
Change action name to Refresh Code Completion
1 parent 04d7f78 commit 5465d6f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/org/netbeans/modules/php/wordpress/WordPressActionsExtender.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
import org.netbeans.modules.php.spi.framework.PhpModuleActionsExtender;
4949
import org.netbeans.modules.php.spi.framework.actions.RunCommandAction;
5050
import org.netbeans.modules.php.wordpress.commands.WordPressCli;
51-
import org.netbeans.modules.php.wordpress.ui.actions.CodeCompletionRefreshAction;
51+
import org.netbeans.modules.php.wordpress.ui.actions.RefreshCodeCompletionAction;
5252
import org.netbeans.modules.php.wordpress.ui.actions.CreatePluginAction;
5353
import org.netbeans.modules.php.wordpress.ui.actions.CreateThemeAction;
5454
import org.netbeans.modules.php.wordpress.ui.actions.WordPressRunCommandAction;
@@ -86,7 +86,7 @@ public List<? extends Action> getActions() {
8686
List<Action> actions = new ArrayList<Action>();
8787
actions.add(CreateThemeAction.getInstance());
8888
actions.add(CreatePluginAction.getInstance());
89-
actions.add(new CodeCompletionRefreshAction());
89+
actions.add(new RefreshCodeCompletionAction());
9090
return actions;
9191
}
9292
}

src/org/netbeans/modules/php/wordpress/ui/actions/CodeCompletionRefreshAction.java renamed to src/org/netbeans/modules/php/wordpress/ui/actions/RefreshCodeCompletionAction.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
*
5757
* @author junichi11
5858
*/
59-
public class CodeCompletionRefreshAction extends BaseAction {
59+
public class RefreshCodeCompletionAction extends BaseAction {
6060

6161
private static final long serialVersionUID = -1446444622440007833L;
6262

@@ -69,7 +69,7 @@ protected String getFullName() {
6969
return Bundle.LBL_WordPressAction(getPureName());
7070
}
7171

72-
@NbBundle.Messages("LBL_ActionName=Code Completion Refresh")
72+
@NbBundle.Messages("LBL_ActionName=Refresh Code Completion")
7373
@Override
7474
protected String getPureName() {
7575
return Bundle.LBL_ActionName();

0 commit comments

Comments
 (0)