> > - the bookmark level field is not working:
> >  - No matter what you insert, it is converted to "False" or "True".

my trunk is in complete rebuild and it will take years.. can you try this
one ?

> >  - There is also no default value (should be "1").

i regarded it as string, which can be empty, i.e. no default value.
but we can change it if you disagree.

> >  - It is possible to enter there other characters than the allowed numbers 
> > 0-9.

shouldn't be the user responsible ? 

pavel

Index: src/PDFOptions.cpp
===================================================================
--- src/PDFOptions.cpp  (revision 20426)
+++ src/PDFOptions.cpp  (working copy)
@@ -60,7 +60,7 @@
        os << "\\pdf_bookmarks " << convert<string>(bookmarks) << '\n';
        os << "\\pdf_bookmarksnumbered " << convert<string>(bookmarksnumbered) 
<< '\n';
        os << "\\pdf_bookmarksopen " << convert<string>(bookmarksopen) << '\n';
-       if (bookmarksopenlevel.empty())
+       if (!bookmarksopenlevel.empty())
                os << "\\pdf_bookmarksopenlevel \"" << bookmarksopenlevel << 
"\"\n";
        
        os << "\\pdf_breaklinks "  << convert<string>(breaklinks)  << '\n';

Reply via email to