X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ftrans.h;h=4463a316138484090b524deb65c3d278d6386083;hb=e94889a041628203c50b66b9a4add63210de6928;hp=6311e74def6b01cb20f86b934ca9bc9c4fe6900c;hpb=44cd0fc9a1687cc63911c7f98d978594458e7813;p=lyx.git diff --git a/src/trans.h b/src/trans.h index 6311e74def..4463a31613 100644 --- a/src/trans.h +++ b/src/trans.h @@ -34,11 +34,11 @@ public: ~Trans(); /// - int Load(std::string const & language); + int load(std::string const & language); /// - bool IsDefined() const; + bool isDefined() const; /// - std::string const & GetName() const; + std::string const & getName() const; /// std::string const process(char, TransManager &); /// @@ -46,19 +46,19 @@ public: private: /// - void AddDeadkey(tex_accent, std::string const &); + void addDeadkey(tex_accent, std::string const &); /// - void FreeKeymap(); + void freeKeymap(); /// - int Load(LyXLex &); + int load(LyXLex &); /// - std::string const & Match(unsigned char c); + std::string const & match(unsigned char c); /// - void InsertException(KmodException & exclist, char c, + void insertException(KmodException & exclist, char c, std::string const & data, bool = false, tex_accent = TEX_NOACCENT); /// - void FreeException(KmodException & exclist); + void freeException(KmodException & exclist); /// std::string name_; @@ -71,7 +71,7 @@ private: /// inline -std::string const & Trans::Match(unsigned char c) +std::string const & Trans::match(unsigned char c) { std::map::iterator it = keymap_.find(c); if (it != keymap_.end()) {