cosmetics

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@23296 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
André Pönitz 2008-02-27 23:11:50 +00:00
parent 1cca0a86bd
commit 768cfbb308
3 changed files with 8 additions and 13 deletions

View File

@ -15,11 +15,8 @@
#include "InsetCollapsable.h" #include "InsetCollapsable.h"
using std::string;
namespace lyx { namespace lyx {
/** The Flex inset, e.g., CharStyle, Custom inset or XML short element /** The Flex inset, e.g., CharStyle, Custom inset or XML short element
*/ */
@ -27,7 +24,7 @@ class InsetFlex : public InsetCollapsable {
public: public:
/// ///
InsetFlex(BufferParams const &,TextClassPtr tc, InsetFlex(BufferParams const &,TextClassPtr tc,
string const & layoutName); std::string const & layoutName);
/// ///
docstring name() const { return from_utf8(name_); } docstring name() const { return from_utf8(name_); }

View File

@ -72,7 +72,7 @@ namespace {
MathWordList theWordList; MathWordList theWordList;
bool math_font_available(docstring & name) bool isMathFontAvailable(docstring & name)
{ {
FontInfo f; FontInfo f;
augmentFont(f, name); augmentFont(f, name);
@ -121,7 +121,7 @@ void initSymbols()
is >> tmp; is >> tmp;
is >> tmp; is >> tmp;
docstring t = from_utf8(tmp); docstring t = from_utf8(tmp);
skip = !math_font_available(t); skip = !isMathFontAvailable(t);
continue; continue;
} else if (line.size() >= 4 && line.substr(0, 4) == "else") { } else if (line.size() >= 4 && line.substr(0, 4) == "else") {
skip = !skip; skip = !skip;
@ -177,10 +177,10 @@ void initSymbols()
if (tmp.extra == "func" || tmp.extra == "funclim" || tmp.extra == "special") { if (tmp.extra == "func" || tmp.extra == "funclim" || tmp.extra == "special") {
LYXERR(Debug::MATHED, "symbol abuse for " << to_utf8(tmp.name)); LYXERR(Debug::MATHED, "symbol abuse for " << to_utf8(tmp.name));
tmp.draw = tmp.name; tmp.draw = tmp.name;
} else if (math_font_available(tmp.inset)) { } else if (isMathFontAvailable(tmp.inset)) {
LYXERR(Debug::MATHED, "symbol available for " << to_utf8(tmp.name)); LYXERR(Debug::MATHED, "symbol available for " << to_utf8(tmp.name));
tmp.draw.push_back(char_type(charid)); tmp.draw.push_back(char_type(charid));
} else if (fallbackid && math_font_available(symbol_font)) { } else if (fallbackid && isMathFontAvailable(symbol_font)) {
if (tmp.inset == "cmex") if (tmp.inset == "cmex")
tmp.inset = from_ascii("lyxsymbol"); tmp.inset = from_ascii("lyxsymbol");
else else
@ -212,7 +212,7 @@ void initSymbols()
} }
docstring tmp = from_ascii("cmm"); docstring tmp = from_ascii("cmm");
docstring tmp2 = from_ascii("cmsy"); docstring tmp2 = from_ascii("cmsy");
has_math_fonts = math_font_available(tmp) && math_font_available(tmp2); has_math_fonts = isMathFontAvailable(tmp) && isMathFontAvailable(tmp2);
} }

View File

@ -12,13 +12,11 @@
#ifndef MATH_FACTORY_H #ifndef MATH_FACTORY_H
#define MATH_FACTORY_H #define MATH_FACTORY_H
#include <map>
#include "MathParser.h" #include "MathParser.h"
#include "support/strfwd.h" #include "support/strfwd.h"
using std::map; #include <map>
namespace lyx { namespace lyx {
@ -35,7 +33,7 @@ MathAtom createInsetMath(char const * const);
*/ */
bool createInsetMath_fromDialogStr(docstring const &, MathData &); bool createInsetMath_fromDialogStr(docstring const &, MathData &);
typedef map<docstring, latexkeys> MathWordList; typedef std::map<docstring, latexkeys> MathWordList;
MathWordList const & mathedWordList(); MathWordList const & mathedWordList();
} // namespace lyx } // namespace lyx