gzz-commits
[Top][All Lists]
Advanced

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

[Gzz-commits] libvob/doc/pegboard/controllers_events--mudyc p...


From: Matti Katila
Subject: [Gzz-commits] libvob/doc/pegboard/controllers_events--mudyc p...
Date: Thu, 07 Aug 2003 10:15:06 -0400

CVSROOT:        /cvsroot/libvob
Module name:    libvob
Branch:         
Changes by:     Matti Katila <address@hidden>   03/08/07 10:15:06

Modified files:
        doc/pegboard/controllers_events--mudyc: peg.rst 

Log message:
        direction fix

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/libvob/libvob/doc/pegboard/controllers_events--mudyc/peg.rst.diff?tr1=1.6&tr2=1.7&r1=text&r2=text

Patches:
Index: libvob/doc/pegboard/controllers_events--mudyc/peg.rst
diff -u libvob/doc/pegboard/controllers_events--mudyc/peg.rst:1.6 
libvob/doc/pegboard/controllers_events--mudyc/peg.rst:1.7
--- libvob/doc/pegboard/controllers_events--mudyc/peg.rst:1.6   Tue Aug  5 
14:07:18 2003
+++ libvob/doc/pegboard/controllers_events--mudyc/peg.rst       Thu Aug  7 
10:15:06 2003
@@ -5,8 +5,8 @@
 
 :Authors:  Matti J. Katila
 :Date-Created: 2003-07-15
-:Last-Modified: $Date: 2003/08/05 18:07:18 $
-:Revision: $Revision: 1.6 $
+:Last-Modified: $Date: 2003/08/07 14:15:06 $
+:Revision: $Revision: 1.7 $
 :Status:   Current
 :Scope:    Minor
 :Type:     Architecture requirements
@@ -174,12 +174,13 @@
     /** A class to send mouse events to the listeners that want them.
      */
     public class MouseMultiplexer {
-       public static final int HORIZONTAL;
-       public static final int VERTICAL;
+       private static class Direction { private Direction() {} }
+       public static final Direction HORIZONTAL = new Direction();
+       public static final Direction VERTICAL = new Direction();
 
        public void setListener(int button, int modifiers, String description, 
MousePressListener l);
        public void setListener(int button, int modifiers, String description, 
MouseClickListener l);
-       public void setListener(int button, int modifiers, int dir, String 
description, RelativeAxisListener l);
+       public void setListener(int button, int modifiers, Direction dir, 
String description, RelativeAxisListener l);
 
        public void setWheelListener(int modifiers, String description, 
RelativeAxisListener l);
 




reply via email to

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