# HG changeset patch # User insilmaril # Date 1188914013 0 # Node ID e46d634e071c1e7bfdd25dc35d8864bb5ad09f35 # Parent 48bf777defa8982907018e50b777698e8e3d5928 Fixed broken xLink handling diff -r 48bf777defa8 -r e46d634e071c branchobj.cpp --- a/branchobj.cpp Mon Aug 27 11:58:16 2007 +0000 +++ b/branchobj.cpp Tue Sep 04 13:53:33 2007 +0000 @@ -682,6 +682,7 @@ if (lmo != NULL) return lmo; } + // Search myself if (inBox (p) && (this != excludeLMO) && isVisibleObj() ) return this; @@ -708,7 +709,8 @@ } // Search myself - if (sid==id) return this; + if (sid==objID) return this; + /* // Search float images diff -r 48bf777defa8 -r e46d634e071c branchobj.h --- a/branchobj.h Mon Aug 27 11:58:16 2007 +0000 +++ b/branchobj.h Tue Sep 04 13:53:33 2007 +0000 @@ -140,7 +140,6 @@ bool tmpUnscrolled; // can only be true (temporary) for a scrolled subtree bool includeImagesVer; // include floatimages in bbox vertically bool includeImagesHor; // include floatimages in bbox horizontally - QString id; // IDstring, needed for xlinks (tomboy) };