]> git.lyx.org Git - features.git/commitdiff
InsetHyperlink.cpp: add FIXME for the docstring issue
authorUwe Stöhr <uwestoehr@web.de>
Thu, 1 Nov 2007 17:54:17 +0000 (17:54 +0000)
committerUwe Stöhr <uwestoehr@web.de>
Thu, 1 Nov 2007 17:54:17 +0000 (17:54 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21352 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetHyperlink.cpp

index 488b68a42ca42895dd7f7d9b172c4951038f0ab1..dfb9e94aef50a30ee60aa54eaff01bdd3fc28b7f 100644 (file)
@@ -33,6 +33,7 @@ using std::ostream;
 using std::find;
 using std::replace;
 
+//FIXME: these should be lists of char_type and not char
 static char const * const chars_url[2] = {"%", "#"};
 
 static char const * const chars_name[6] = {
@@ -76,6 +77,7 @@ docstring const InsetHyperlink::getScreenLabel(Buffer const &) const
 int InsetHyperlink::latex(Buffer const &, odocstream & os,
                    OutputParams const & runparams) const
 {
+       //FIXME: all strings in this routine should be docstrings
        string url = to_utf8(getParam("target"));
 
        string backslash = "\\";