diff -r 9db215a4ad53 -r 5987f9f15bac xml-vym.cpp --- a/xml-vym.cpp Mon Jul 27 12:53:17 2009 +0000 +++ b/xml-vym.cpp Mon Aug 03 10:42:12 2009 +0000 @@ -354,7 +354,7 @@ return "the document is not in the VYM file format"; } -bool parseVYMHandler::readBranchAttr (const QXmlAttributes& a) //FIXME-2 +bool parseVYMHandler::readBranchAttr (const QXmlAttributes& a) { mainWindow->setProgressValue (branchesCurrent++); @@ -363,12 +363,13 @@ if (!readOOAttr(a)) return false; if (!a.value( "scrolled").isEmpty() ) - lastBranch->toggleScroll(); //FIXME-3 in endElement unscroll again, if branch is still empty + lastBranch->toggleScroll(); // (interesting for import of KDE bookmarks) -/* - if (!a.value( "frameType").isEmpty() ) + +/* if (!a.value( "frameType").isEmpty() ) FIXME-2 lastOO->setFrameType (a.value("frameType")); //Compatibility 1.8.1 +*/ if (!a.value( "incImgV").isEmpty() ) { if (a.value("incImgV")=="true") @@ -383,7 +384,6 @@ else lastBranch->setIncludeImagesHor(false); } -*/ return true; }