X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2FKeyMap.cpp;h=54b21f2868b1a845d6e996b4f9cd7f9a77343494;hb=2d7cf039351fba0d91746dce8cbf1f9e31cdc224;hp=e71faafa67b97c3eb6b59be9323ccf9309b0c26e;hpb=586d60af6a99f84a5e07c2090a5c780cbcd91bda;p=lyx.git diff --git a/src/KeyMap.cpp b/src/KeyMap.cpp index e71faafa67..54b21f2868 100644 --- a/src/KeyMap.cpp +++ b/src/KeyMap.cpp @@ -37,11 +37,6 @@ using namespace lyx::support; namespace lyx { -namespace { - // current format of bind files - static unsigned int const BIND_FORMAT = 1; -} - string const KeyMap::printKeySym(KeySymbol const & key, KeyModifier mod) { string buf; @@ -252,18 +247,17 @@ bool KeyMap::read(FileName const & bind_file, KeyMap * unbind_map) if (retval != FormatMismatch) return retval == ReadOK; - LYXERR(Debug::FILES, "Converting bind file to " << BIND_FORMAT); + LYXERR(Debug::FILES, "Converting bind file to " << LFUN_FORMAT); FileName const tempfile = FileName::tempName("convert_bind"); bool const success = prefs2prefs(bind_file, tempfile, true); if (!success) { LYXERR0 ("Unable to convert " << bind_file << - " to format " << BIND_FORMAT); + " to format " << LFUN_FORMAT); return false; } retval = readWithoutConv(tempfile, unbind_map); tempfile.removeFile(); return retval == ReadOK; - return true; } @@ -383,7 +377,7 @@ KeyMap::ReturnValues KeyMap::readWithoutConv(FileName const & bind_file, KeyMap // This is triggered the first time through the loop unless // we hit a format tag. - if (format != BIND_FORMAT) + if (format != LFUN_FORMAT) return FormatMismatch; } @@ -403,7 +397,7 @@ void KeyMap::write(string const & bind_file, bool append, bool unbind) const if (!append) os << "## This file is automatically generated by lyx\n" << "## All modifications will be lost\n\n" - << "Format " << BIND_FORMAT << "\n\n"; + << "Format " << LFUN_FORMAT << "\n\n"; string tag = unbind ? "\\unbind" : "\\bind"; BindingList const list = listBindings(false);