[PD-cvs] externals/grill/flext/source flclass.h, 1.65, 1.66 flout.cpp, 1.23, 1.24 flstdc.h, 1.36, 1.37 flxlet.cpp, 1.9, 1.10

Thomas Grill xovo at users.sourceforge.net
Sun Nov 20 00:10:56 CET 2005


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

Modified Files:
	flclass.h flout.cpp flstdc.h flxlet.cpp 
Log Message:


Index: flout.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/source/flout.cpp,v
retrieving revision 1.23
retrieving revision 1.24
diff -C2 -d -r1.23 -r1.24
*** flout.cpp	26 Sep 2005 13:59:34 -0000	1.23
--- flout.cpp	19 Nov 2005 23:10:53 -0000	1.24
***************
*** 102,106 ****
  #if PD_MINOR_VERSION >= 37 && defined(PD_DEVEL_VERSION)
              // set tooltip
!             if(xi.desc && *xi.desc) class_settip(thisClass(),gensym(xi.desc));
  #endif
          }       
--- 102,107 ----
  #if PD_MINOR_VERSION >= 37 && defined(PD_DEVEL_VERSION)
              // set tooltip
! // this is on a per-class basis... we cannot really use it here
! //            if(xi.desc && *xi.desc) class_settip(thisClass(),gensym(xi.desc));
  #endif
          }       

Index: flxlet.cpp
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/source/flxlet.cpp,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** flxlet.cpp	23 May 2005 16:52:46 -0000	1.9
--- flxlet.cpp	19 Nov 2005 23:10:54 -0000	1.10
***************
*** 22,25 ****
--- 22,27 ----
  flext_base::xlet flext_base::inlist[MAXLETS],flext_base::outlist[MAXLETS];
  
+ flext_base::xlet::xlet(): tp(xlet_none),desc(NULL) {}
+ flext_base::xlet::~xlet() { if(desc) delete[] desc; }
  
  void flext_base::xlet::Desc(const char *c)

Index: flstdc.h
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/source/flstdc.h,v
retrieving revision 1.36
retrieving revision 1.37
diff -C2 -d -r1.36 -r1.37
*** flstdc.h	19 Jul 2005 23:08:33 -0000	1.36
--- flstdc.h	19 Nov 2005 23:10:54 -0000	1.37
***************
*** 46,50 ****
  #endif
  
! extern "C" {	    	    	    
  	// Include the relevant PD header files
  	#ifdef FLEXT_DEBUG
--- 46,50 ----
  #endif
  
! extern "C" {	    	    
  	// Include the relevant PD header files
  	#ifdef FLEXT_DEBUG

Index: flclass.h
===================================================================
RCS file: /cvsroot/pure-data/externals/grill/flext/source/flclass.h,v
retrieving revision 1.65
retrieving revision 1.66
diff -C2 -d -r1.65 -r1.66
*** flclass.h	11 Oct 2005 22:22:48 -0000	1.65
--- flclass.h	19 Nov 2005 23:10:53 -0000	1.66
***************
*** 811,816 ****
  	class FLEXT_SHARE xlet {	
      public:
!         xlet(): tp(xlet_none),desc(NULL) {}
!         ~xlet() { if(desc) delete[] desc; }
  
          xlettype tp;
--- 811,816 ----
  	class FLEXT_SHARE xlet {	
      public:
!         xlet();
!         ~xlet();
  
          xlettype tp;





More information about the Pd-cvs mailing list