From: Uwe Stöhr Date: Thu, 1 Nov 2007 17:54:17 +0000 (+0000) Subject: InsetHyperlink.cpp: add FIXME for the docstring issue X-Git-Tag: 1.6.10~7544 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=80c4d82e976dd0c3f3f68317ca0658ac7dadff0e;p=lyx.git InsetHyperlink.cpp: add FIXME for the docstring issue git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@21352 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/src/insets/InsetHyperlink.cpp b/src/insets/InsetHyperlink.cpp index 488b68a42c..dfb9e94aef 100644 --- a/src/insets/InsetHyperlink.cpp +++ b/src/insets/InsetHyperlink.cpp @@ -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 = "\\";