fixed accelerator problem; slightly improved PHP Perspective
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / ui / actions / PHPdtActionConstants.java
index 436dc6a..af602c4 100644 (file)
@@ -21,6 +21,14 @@ package net.sourceforge.phpdt.ui.actions;
  * @since 2.0
  */
 public class PHPdtActionConstants {
+       
+//     Edit menu
+
+       /**
+        * Edit menu: name of standard Code Assist global action
+        * (value <code>"org.phpeclipse.phpdt.ui.actions.ContentAssist"</code>).
+        */
+       public static final String CONTENT_ASSIST= "net.sourceforge.phpeclipse.phpeditor.ContentAssist"; //$NON-NLS-1$
 
        // Source menu  
        
@@ -28,12 +36,12 @@ public class PHPdtActionConstants {
         * Source menu: name of standard Comment global action
         * (value <code>"net.sourceforge.phpdt.ui.actions.Comment"</code>).
         */
-       public static final String COMMENT= "net.sourceforge.phpdt.ui.actions.Comment"; //$NON-NLS-1$
+       public static final String COMMENT= "net.sourceforge.phpeclipse.phpeditor.Comment"; //$NON-NLS-1$
        
        /**
         * Source menu: name of standard Uncomment global action
         * (value <code>"net.sourceforge.phpdt.ui.actions.Uncomment"</code>).
         */
-       public static final String UNCOMMENT= "net.sourceforge.phpdt.ui.actions.Uncomment"; //$NON-NLS-1$
+       public static final String UNCOMMENT= "net.sourceforge.phpeclipse.phpeditor.Uncomment"; //$NON-NLS-1$
        
 }