gzz-commits
[Top][All Lists]
Advanced

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

[Gzz-commits] fenfire/org/fenfire/modules/pp PPActionsImpl.java


From: Tuomas J. Lukka
Subject: [Gzz-commits] fenfire/org/fenfire/modules/pp PPActionsImpl.java
Date: Tue, 15 Apr 2003 23:53:53 -0400

CVSROOT:        /cvsroot/fenfire
Module name:    fenfire
Changes by:     Tuomas J. Lukka <address@hidden>        03/04/15 23:53:53

Modified files:
        org/fenfire/modules/pp: PPActionsImpl.java 

Log message:
        AAAARGH - it was setting 'the single note' of the paper using set_11X, 
not 'adding a new note'

CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/fenfire/fenfire/org/fenfire/modules/pp/PPActionsImpl.java.diff?tr1=1.18&tr2=1.19&r1=text&r2=text

Patches:
Index: fenfire/org/fenfire/modules/pp/PPActionsImpl.java
diff -u fenfire/org/fenfire/modules/pp/PPActionsImpl.java:1.18 
fenfire/org/fenfire/modules/pp/PPActionsImpl.java:1.19
--- fenfire/org/fenfire/modules/pp/PPActionsImpl.java:1.18      Tue Apr 15 
23:53:08 2003
+++ fenfire/org/fenfire/modules/pp/PPActionsImpl.java   Tue Apr 15 23:53:53 2003
@@ -12,7 +12,7 @@
 /** The implementation of PPActions.
  */
 public class PPActionsImpl extends UnicastRemoteObject implements PPActions {
-public static final String rcsid = "$Id: PPActionsImpl.java,v 1.18 2003/04/16 
03:53:08 tjl Exp $";
+public static final String rcsid = "$Id: PPActionsImpl.java,v 1.19 2003/04/16 
03:53:53 tjl Exp $";
     public static final boolean dbg = true;
     protected static void p(String s) { if(dbg) pa(s); }
     protected static void pa(String s) { System.out.println("PPActionsImpl: 
"+s); }
@@ -87,7 +87,7 @@
        Object note = RDFUtil.N(fen, PP.Note);
 
        // and join note to paper
-       fen.graph.set1_11X(paper, PP.contains, note);
+       fen.graph.add(paper, PP.contains, note);
        
        // set coords
        fen.graph.set1_11X(note, SPATIAL.coordX, Nodes.getStringLiteral(""+x) );




reply via email to

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