]> git.lyx.org Git - features.git/commitdiff
Move bind file format tag to LyXAction.cpp, and rename it.
authorRichard Heck <rgheck@comcast.net>
Tue, 18 Jan 2011 15:07:26 +0000 (15:07 +0000)
committerRichard Heck <rgheck@comcast.net>
Tue, 18 Jan 2011 15:07:26 +0000 (15:07 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37246 a592a061-630c-0410-9148-cb99ea01b6c8

src/KeyMap.cpp
src/LyXAction.h

index 70848610974019144af464a55f1481d8a74e385e..54b21f2868b1a845d6e996b4f9cd7f9a77343494 100644 (file)
@@ -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,12 +247,12 @@ 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);
@@ -382,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;
        }
 
@@ -402,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);
index 9191694372bb2667aa1bca219e5a1f2946b413a4..cbe59b95a9dab4cae397461e5ecb50dc041f30e5 100644 (file)
@@ -21,6 +21,9 @@
 
 namespace lyx {
 
+// current LFUN format
+static unsigned int const LFUN_FORMAT = 1;
+
 class FuncRequest;
 class LyXErr;