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
This commit is contained in:
Uwe Stöhr 2007-11-01 17:54:17 +00:00
parent 41880f4282
commit 80c4d82e97

View File

@ -33,6 +33,7 @@ using std::ostream;
using std::find; using std::find;
using std::replace; 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_url[2] = {"%", "#"};
static char const * const chars_name[6] = { 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, int InsetHyperlink::latex(Buffer const &, odocstream & os,
OutputParams const & runparams) const OutputParams const & runparams) const
{ {
//FIXME: all strings in this routine should be docstrings
string url = to_utf8(getParam("target")); string url = to_utf8(getParam("target"));
string backslash = "\\"; string backslash = "\\";