gzz-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Gzz-commits] gzz/gzz gfx/gl/GLCache.java view/FullScreenView...


From: Benja Fallenstein
Subject: [Gzz-commits] gzz/gzz gfx/gl/GLCache.java view/FullScreenView...
Date: Tue, 01 Oct 2002 10:06:36 -0400

CVSROOT:        /cvsroot/gzz
Module name:    gzz
Changes by:     Benja Fallenstein <address@hidden>      02/10/01 10:06:36

Modified files:
        gzz/gfx/gl     : GLCache.java 
        gzz/view       : FullScreenView.java MarkDecorator.java 
                         MultitypeCellContentView.java 

Log message:
        make copyrighted

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/gzz/gfx/gl/GLCache.java.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/gzz/view/FullScreenView.java.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/gzz/view/MarkDecorator.java.diff?tr1=1.3&tr2=1.4&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/gzz/gzz/gzz/view/MultitypeCellContentView.java.diff?tr1=1.2&tr2=1.3&r1=text&r2=text

Patches:
Index: gzz/gzz/gfx/gl/GLCache.java
diff -c gzz/gzz/gfx/gl/GLCache.java:1.1 gzz/gzz/gfx/gl/GLCache.java:1.2
*** gzz/gzz/gfx/gl/GLCache.java:1.1     Sun Sep 29 10:51:27 2002
--- gzz/gzz/gfx/gl/GLCache.java Tue Oct  1 10:06:36 2002
***************
*** 1,4 ****
! // (c) Tuomas J. Lukka
  
  package gzz.gfx.gl;
  import gzz.vob.Vob;
--- 1,25 ----
! /*
! GLCache.java
!  *    
!  *    Copyright (c) 2002, Tuomas J. Lukka
!  *    
!  *    You may use and distribute under the terms of either the GNU Lesser
!  *    General Public License, either version 2 of the license or,
!  *    at your choice, any later version. Alternatively, you may use and
!  *    distribute under the terms of the XPL.
!  *    
!  *    See the LICENSE.lgpl and LICENSE.xpl files for the specific terms of
!  *    the licenses.
!  *    
!  *    This software is distributed in the hope that it will be useful,
!  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
!  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the README
!  *    file for more details.
!  *    
!  */
! /*
!  * Written by Tuomas J. Lukka
!  */
  
  package gzz.gfx.gl;
  import gzz.vob.Vob;
Index: gzz/gzz/view/FullScreenView.java
diff -c gzz/gzz/view/FullScreenView.java:1.1 
gzz/gzz/view/FullScreenView.java:1.2
*** gzz/gzz/view/FullScreenView.java:1.1        Tue Oct  1 10:04:18 2002
--- gzz/gzz/view/FullScreenView.java    Tue Oct  1 10:06:36 2002
***************
*** 1,4 ****
! //(c):Benja Fallenstein
  package gzz.view;
  import gzz.*;
  import gzz.vob.*;
--- 1,25 ----
! /*
! FullScreenView.java
!  *    
!  *    Copyright (c) 2002, Benja Fallenstein
!  *    
!  *    You may use and distribute under the terms of either the GNU Lesser
!  *    General Public License, either version 2 of the license or,
!  *    at your choice, any later version. Alternatively, you may use and
!  *    distribute under the terms of the XPL.
!  *    
!  *    See the LICENSE.lgpl and LICENSE.xpl files for the specific terms of
!  *    the licenses.
!  *    
!  *    This software is distributed in the hope that it will be useful,
!  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
!  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the README
!  *    file for more details.
!  *    
!  */
! /*
!  * Written by Benja Fallenstein
!  */
  package gzz.view;
  import gzz.*;
  import gzz.vob.*;
***************
*** 13,16 ****
              scene, into, size.width, size.height,
              context, 1);
      }
! }
\ No newline at end of file
--- 34,37 ----
              scene, into, size.width, size.height,
              context, 1);
      }
! }
Index: gzz/gzz/view/MarkDecorator.java
diff -c gzz/gzz/view/MarkDecorator.java:1.3 gzz/gzz/view/MarkDecorator.java:1.4
*** gzz/gzz/view/MarkDecorator.java:1.3 Sun Sep 29 10:53:45 2002
--- gzz/gzz/view/MarkDecorator.java     Tue Oct  1 10:06:36 2002
***************
*** 1,4 ****
! //(c):Benja Fallenstein
  package gzz.view;
  import gzz.*;
  import gzz.client.*;
--- 1,25 ----
! /*
! MarkDecorator.java
!  *    
!  *    Copyright (c) 2002, Benja Fallenstein
!  *    
!  *    You may use and distribute under the terms of either the GNU Lesser
!  *    General Public License, either version 2 of the license or,
!  *    at your choice, any later version. Alternatively, you may use and
!  *    distribute under the terms of the XPL.
!  *    
!  *    See the LICENSE.lgpl and LICENSE.xpl files for the specific terms of
!  *    the licenses.
!  *    
!  *    This software is distributed in the hope that it will be useful,
!  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
!  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the README
!  *    file for more details.
!  *    
!  */
! /*
!  * Written by Benja Fallenstein
!  */
  package gzz.view;
  import gzz.*;
  import gzz.client.*;
Index: gzz/gzz/view/MultitypeCellContentView.java
diff -c gzz/gzz/view/MultitypeCellContentView.java:1.2 
gzz/gzz/view/MultitypeCellContentView.java:1.3
*** gzz/gzz/view/MultitypeCellContentView.java:1.2      Tue Oct  1 10:04:51 2002
--- gzz/gzz/view/MultitypeCellContentView.java  Tue Oct  1 10:06:36 2002
***************
*** 1,4 ****
! //(c):Benja Fallenstein
  package gzz.view;
  import gzz.*;
  import gzz.media.*;
--- 1,25 ----
! /*
! MultitypeCellContentView.java
!  *    
!  *    Copyright (c) 2002, Benja Fallenstein
!  *    
!  *    You may use and distribute under the terms of either the GNU Lesser
!  *    General Public License, either version 2 of the license or,
!  *    at your choice, any later version. Alternatively, you may use and
!  *    distribute under the terms of the XPL.
!  *    
!  *    See the LICENSE.lgpl and LICENSE.xpl files for the specific terms of
!  *    the licenses.
!  *    
!  *    This software is distributed in the hope that it will be useful,
!  *    but WITHOUT ANY WARRANTY; without even the implied warranty of
!  *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the README
!  *    file for more details.
!  *    
!  */
! /*
!  * Written by Benja Fallenstein
!  */
  package gzz.view;
  import gzz.*;
  import gzz.media.*;
***************
*** 27,30 ****
          else
              textView.place(c, sc, coordsys, w, h, context, scale);
      }
! }
\ No newline at end of file
--- 48,51 ----
          else
              textView.place(c, sc, coordsys, w, h, context, scale);
      }
! }




reply via email to

[Prev in Thread] Current Thread [Next in Thread]