]> git.lyx.org Git - features.git/commitdiff
* GuiDocument.cpp:
authorJürgen Spitzmüller <spitz@lyx.org>
Tue, 4 Nov 2008 15:44:02 +0000 (15:44 +0000)
committerJürgen Spitzmüller <spitz@lyx.org>
Tue, 4 Nov 2008 15:44:02 +0000 (15:44 +0000)
* add some unicode FIXMEs

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@27249 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/qt4/GuiDocument.cpp

index 0bb0dfdcd5d4c39d7f84836c78c8fa3ccfb96726..72ce89f65656635336eb90e7d7b5a1beee1a1b62 100644 (file)
@@ -202,6 +202,7 @@ docstring getModuleDescription(string const & modName)
        LyXModule const * const mod = moduleList[modName];
        if (!mod)
                return _("Module not found!");
+       // FIXME Unicode
        return translateIfPossible(from_utf8(mod->getDescription()));
 }
 
@@ -2309,6 +2310,7 @@ list<GuiDocument::modInfoStruct> const
                m.id = *it;
                LyXModule * mod = moduleList[*it];
                if (mod)
+                       // FIXME Unicode
                        m.name = toqstr(translateIfPossible(from_utf8(mod->getName())));
                else 
                        m.name = toqstr(*it) + toqstr(" (") + qt_("Not Found") + toqstr(")");
@@ -2464,9 +2466,12 @@ void GuiDocument::loadModuleInfo()
        for (; it != end; ++it) {
                modInfoStruct m;
                m.id = it->getID();
+               // FIXME Unicode
                m.name = toqstr(translateIfPossible(from_utf8(it->getName())));
                // this is supposed to give us the first sentence of the description
-               QString desc = toqstr(translateIfPossible(from_utf8(it->getDescription())));
+               // FIXME Unicode
+               QString desc =
+                       toqstr(translateIfPossible(from_utf8(it->getDescription())));
                int const pos = desc.indexOf(".");
                if (pos > 0)
                        desc.truncate(pos + 1);