exports.cpp
changeset 160 72cc3873306a
parent 131 16b250a57c17
child 163 30b22f7bd009
     1.1 --- a/exports.cpp	Thu Sep 01 15:35:18 2005 +0000
     1.2 +++ b/exports.cpp	Mon Sep 05 11:56:31 2005 +0000
     1.3 @@ -35,7 +35,8 @@
     1.4  	// Main loop over all branches
     1.5  	QString s;
     1.6  	QString actIndent("");
     1.7 -	uint i;
     1.8 +	int i;
     1.9 +	uint j;
    1.10  	BranchObj *bo;
    1.11  	bo=mapCenter->first();
    1.12  	while (bo) 
    1.13 @@ -48,7 +49,7 @@
    1.14  		if (bo->getDepth()==0)
    1.15  		{
    1.16  			ts << (bo->getHeading()+ "\n");
    1.17 -			for (i=0;i<bo->getHeading().length();i++) ts<<"=";
    1.18 +			for (j=0;j<bo->getHeading().length();j++) ts<<"=";
    1.19  			ts << "\n";
    1.20  		} else 	if (bo->getDepth()==1)
    1.21  			ts << ("\n"+getSectionString(bo) + bo->getHeading()+ "\n");