Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[cdt-patch] Formatting 'char' types (UI).

Index: ChangeLog
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.ui/ChangeLog,v
retrieving revision 1.56
diff -u -r1.56 ChangeLog
--- ChangeLog 17 Dec 2002 20:32:26 -0000 1.56
+++ ChangeLog 17 Dec 2002 21:53:34 -0000
@@ -1,4 +1,8 @@
 2002-12-17 Mikhail Khodjaiants
+ Formatting 'char' types.
+ * VariableFormatActionDelegate.java
+
+2002-12-17 Mikhail Khodjaiants
  Removed the "Primitive type display options" section from the C/C++ Debug preference page because of the different formattong strategy.
  * CDebugPreferencePage.java
 
Index: src/org/eclipse/cdt/debug/internal/ui/actions/VariableFormatActionDelegate.java
===================================================================
RCS file: /home/tools/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/VariableFormatActionDelegate.java,v
retrieving revision 1.1
diff -u -r1.1 VariableFormatActionDelegate.java
--- src/org/eclipse/cdt/debug/internal/ui/actions/VariableFormatActionDelegate.java 17 Dec 2002 02:46:01 -0000 1.1
+++ src/org/eclipse/cdt/debug/internal/ui/actions/VariableFormatActionDelegate.java 17 Dec 2002 21:53:35 -0000
@@ -122,9 +122,10 @@
    {
     switch( ((ICValue)value).getType() )
     {
-     case ICValue.TYPE_ARRAY:
+//     case ICValue.TYPE_ARRAY:
      case ICValue.TYPE_SIMPLE:
      case ICValue.TYPE_POINTER:
+     case ICValue.TYPE_CHAR:
       enabled = true;
       break;
     }

Back to the top