]> git.lyx.org Git - lyx.git/commitdiff
Indentation fix.
authorRichard Heck <rgheck@comcast.net>
Thu, 20 Sep 2007 06:22:07 +0000 (06:22 +0000)
committerRichard Heck <rgheck@comcast.net>
Thu, 20 Sep 2007 06:22:07 +0000 (06:22 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@20369 a592a061-630c-0410-9148-cb99ea01b6c8

src/insets/InsetCitation.cpp

index 020e2b36891ebd2c7f38606d321a3eaa9bd02d0b..0f0f1bb78967490f6cedb037d0a5499859d24fcf 100644 (file)
@@ -128,20 +128,20 @@ string const
                                output = input;
                        break;
 
-                       case biblio::ENGINE_JURABIB: {
-               // Jurabib does not support the 'uppercase' natbib style.
-                               if (input[0] == 'C')
-                                       output = string(1, 'c') + input.substr(1);
-                               else
-                                       output = input;
-
-               // Jurabib does not support the 'full' natbib style.
-                               string::size_type const n = output.size() - 1;
-                               if (output != "cite*" && output[n] == '*')
-                                       output = output.substr(0, n);
+               case biblio::ENGINE_JURABIB: {
+                       // Jurabib does not support the 'uppercase' natbib style.
+                       if (input[0] == 'C')
+                               output = string(1, 'c') + input.substr(1);
+                       else
+                               output = input;
 
-                               break;
-                       }
+                       // Jurabib does not support the 'full' natbib style.
+                       string::size_type const n = output.size() - 1;
+                       if (output != "cite*" && output[n] == '*')
+                               output = output.substr(0, n);
+
+                       break;
+               }
        }
 
        return output;