diff -r 1fb50e79661c -r fe839bdfd10c treeitem.cpp --- a/treeitem.cpp Tue Jul 07 09:34:24 2009 +0000 +++ b/treeitem.cpp Tue Jul 07 11:21:27 2009 +0000 @@ -689,10 +689,14 @@ QString TreeItem::getGeneralAttr() { + QString s; if (hideExport) - return attribut("hideInExport","true"); - else - return QString(); + s+=attribut("hideInExport","true"); + if (!url.isEmpty()) + s+=attribut ("url",url); + if (!vymLink.isEmpty()) + s+=attribut ("vymLink",vymLink); + return s; }