(file) Return to Formatter.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/Formatter.cpp between version 1.27 and 1.28

version 1.27, 2007/01/11 16:21:54 version 1.28, 2007/02/13 19:21:44
Line 91 
Line 91 
             return _string;             return _string;
  
         case CSTRLIT:         case CSTRLIT:
             return String(_cstrlit->str, ((Uint32)_cstrlit->size));              return String(_cstrlit->str, _cstrlit->size);
             break;             break;
  
         case VOIDT:         case VOIDT:
Line 261 
Line 261 
             Sint32 x = _integer;             Sint32 x = _integer;
  
             if (x >= 0 && x < 128)             if (x >= 0 && x < 128)
                 out.append(_num_strings[x].str,                  out.append(_num_strings[x].str, _num_strings[x].size);
                     (Uint32)(_num_strings[x].size));  
             else             else
             {             {
                 char buffer[32];                 char buffer[32];
Line 278 
Line 277 
  
             if (x < 128)             if (x < 128)
             {             {
                 out.append(_num_strings[x].str,                  out.append(_num_strings[x].str, _num_strings[x].size);
                     (Uint32)(_num_strings[x].size));  
             }             }
             else             else
             {             {
Line 322 
Line 320 
  
             if (x < 128)             if (x < 128)
             {             {
                 out.append(_num_strings[x].str,                  out.append(_num_strings[x].str, _num_strings[x].size);
                     (Uint32)(_num_strings[x].size));  
             }             }
             else             else
             {             {
Line 343 
Line 340 
  
         case CSTRLIT:         case CSTRLIT:
         {         {
             out.append(_cstrlit->str, (Uint32)_cstrlit->size);              out.append(_cstrlit->str, _cstrlit->size);
             break;             break;
         }         }
  


Legend:
Removed from v.1.27  
changed lines
  Added in v.1.28

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2