xlinkobj.cpp
changeset 104 270593ab83b2
parent 103 c810a11d11d9
child 106 4083860dd82e
     1.1 --- a/xlinkobj.cpp	Mon May 23 15:28:20 2005 +0000
     1.2 +++ b/xlinkobj.cpp	Mon May 30 05:39:10 2005 +0000
     1.3 @@ -88,7 +88,6 @@
     1.4  
     1.5  int XLinkObj::getWidth()
     1.6  {
     1.7 -	cout << "XLO  w="<<width<<endl;
     1.8  	return width;
     1.9  }
    1.10  
    1.11 @@ -113,11 +112,7 @@
    1.12  {
    1.13  	if (beginBranch && endBranch)
    1.14  	{
    1.15 -		if (beginBranch==endBranch)
    1.16 -		{	//FIXME debugging
    1.17 -			cout << "XLO::activate  b=e="<<beginBranch->getHeading()<<endl;
    1.18 -			return false;
    1.19 -		}
    1.20 +		if (beginBranch==endBranch) return false;
    1.21  		xLinkState=activeXLink;
    1.22  		beginBranch->addXLink (this);
    1.23  		endBranch->addXLink (this);
    1.24 @@ -291,8 +286,6 @@
    1.25  			s+=endElement ("xlink");
    1.26  		}
    1.27  	}
    1.28 -	//FIXME testing
    1.29 -	//cout << s<<endl;
    1.30  	return s;
    1.31  }
    1.32