]> git.lyx.org Git - features.git/commitdiff
Style.
authorRichard Heck <rgheck@comcast.net>
Fri, 8 Jan 2010 18:46:09 +0000 (18:46 +0000)
committerRichard Heck <rgheck@comcast.net>
Fri, 8 Jan 2010 18:46:09 +0000 (18:46 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32895 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetCitation.cpp

index 6ba46a6546a9f7d3db53587f68538dbc8c917811..c58ce39795abf670e6ab7aeb6c5e66f7fe3ed940 100644 (file)
@@ -134,7 +134,7 @@ string asValidLatexCommand(string const & input, CiteEngine const engine)
 
 
 docstring complexLabel(Buffer const & buffer,
-                           string const & citeType, docstring const & keyList,
+                           string const & citetype, docstring const & keylist,
                            docstring const & before, docstring const & after,
                            CiteEngine engine)
 {
@@ -158,7 +158,7 @@ docstring complexLabel(Buffer const & buffer,
        // CITE:        author/<before field>
 
        // We don't currently use the full or forceUCase fields.
-       string cite_type = asValidLatexCommand(citeType, engine);
+       string cite_type = asValidLatexCommand(citetype, engine);
        if (cite_type[0] == 'C')
                // If we were going to use them, this would mean ForceUCase
                cite_type = string(1, 'c') + cite_type.substr(1);
@@ -212,7 +212,7 @@ docstring complexLabel(Buffer const & buffer,
        docstring const sep_str = from_ascii(sep) + ' ';
 
        docstring label;
-       vector<docstring> keys = getVectorFromString(keyList);
+       vector<docstring> keys = getVectorFromString(keylist);
        vector<docstring>::const_iterator it  = keys.begin();
        vector<docstring>::const_iterator end = keys.end();
        for (; it != end; ++it) {