Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Adjusting the visibility enumeration to match the par ser's

Title: Not Applied: [cdt-patch] C Model Update - show the static elements in outline view

Thanks,

Hoda

Index: model/org/eclipse/cdt/core/model/IMember.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.core/model/org/eclipse/cdt/core/model/IMember.java,v
retrieving revision 1.3
diff -u -r1.3 IMember.java
--- model/org/eclipse/cdt/core/model/IMember.java	28 Mar 2003 21:05:20 -0000	1.3
+++ model/org/eclipse/cdt/core/model/IMember.java	31 Mar 2003 18:18:11 -0000
@@ -12,9 +12,9 @@
  */
 public interface IMember extends IDeclaration {
 
-	static final int V_PUBLIC = 0;
+	static final int V_PRIVATE = 0;
 	static final int V_PROTECTED = 1;
-	static final int V_PRIVATE = 2;
+	static final int V_PUBLIC = 2;
 
 	/**
 	 * Returns the member's visibility

Back to the top