[PD-cvs] externals/grill/flext/source flattr_ed.cpp,1.28,1.29

Thomas Grill xovo at users.sourceforge.net
Sat Nov 27 06:01:23 CET 2004


Update of /cvsroot/pure-data/externals/grill/flext/source
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7745/source

Modified Files:
	flattr_ed.cpp 
Log Message:
another fix for the attribute editor
fixed const error


Index: flattr_ed.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/source/flattr_ed.cpp,v
retrieving revision 1.28
retrieving revision 1.29
diff -C2 -d -r1.28 -r1.29
*** flattr_ed.cpp	17 Nov 2004 03:30:50 -0000	1.28
--- flattr_ed.cpp	27 Nov 2004 05:01:07 -0000	1.29
***************
*** 524,528 ****
          }
  
!         sys_vgui(list?"%s {\n":"%s\n",GetString(sym));
  
          AtomList lv;
--- 524,528 ----
          }
  
!         sys_vgui(const_cast<char *>(list?"%s {\n":"%s\n",GetString(sym)));
  
          AtomList lv;
***************
*** 543,547 ****
              sys_vgui("{}\n");
  
!         sys_vgui(list?"} {\n":" \n");
  
          if(pattr) {
--- 543,547 ----
              sys_vgui("{}\n");
  
!         sys_vgui(const_cast<char *>(list?"} {\n":" \n"));
  
          if(pattr) {
***************
*** 562,566 ****
  
  
!         sys_vgui(list?"} %i %i %i \n":" %i %i %i \n",tp,sv,pattr?(pattr->BothExist()?2:1):0);
      }
  
--- 562,566 ----
  
  
!         sys_vgui(const_cast<char *>(list?"} %i %i %i \n":" %i %i %i \n"),tp,sv,pattr?(pattr->BothExist()?2:1):0);
      }
  





More information about the Pd-cvs mailing list