X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Fkbsequence.C;h=dc1706dda6939b84980c55bc396ddbecf97b6545;hb=35204f8f33d7400a5fefeffea533fb4cb4097211;hp=708fb99ee5b8b2b072789933fbe296131fedf603;hpb=43b77ba2d722cdb8a9437926f839c1dcbf3c0b89;p=lyx.git diff --git a/src/kbsequence.C b/src/kbsequence.C index 708fb99ee5..dc1706dda6 100644 --- a/src/kbsequence.C +++ b/src/kbsequence.C @@ -21,6 +21,9 @@ #include "frontends/LyXKeySym.h" #include "frontends/LyXKeySymFactory.h" + +namespace lyx { + using std::make_pair; using std::string; @@ -157,7 +160,7 @@ string const kb_sequence::printOptions() const if (!curmap) return buf; - buf += lyx::to_utf8(_(" options: ")); + buf += to_utf8(_(" options: ")); buf += curmap->print(); return buf; } @@ -180,3 +183,6 @@ void kb_sequence::clear() sequence.clear(); reset(); } + + +} // namespace lyx