mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 08:25:03 +00:00
fix XBEL write routine
svn path=/trunk/; revision=13668
This commit is contained in:
parent
c011b2f3f4
commit
f0fa701704
1 changed files with 4 additions and 2 deletions
|
@ -455,9 +455,11 @@ void Favorites::write(LPCTSTR path) const
|
|||
super::write(pos);
|
||||
pos.back();
|
||||
|
||||
xbel.write(path, XMLNode::FORMAT_SMART, XMLHeader("1.0", "UTF-8", "<!DOCTYPE xbel"
|
||||
xbel._header._doctype = "<!DOCTYPE xbel"
|
||||
" PUBLIC \"+//IDN python.org//DTD XML Bookmark Exchange Language 1.0//EN//XML\"\n"
|
||||
" \"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd\">"));
|
||||
" \"http://www.python.org/topics/xml/dtds/xbel-1.0.dtd\">";
|
||||
|
||||
xbel.write(path);
|
||||
}
|
||||
|
||||
/// import Internet Explorer bookmarks from Favorites folder
|
||||
|
|
Loading…
Reference in a new issue