]> git.lyx.org Git - lyx.git/blobdiff - src/insets/insetcite.C
fix typo that put too many include paths for most people
[lyx.git] / src / insets / insetcite.C
index 6eedb6df8ccf46d8bf539f5fe5370078359b374f..df1dddd80380ad9b4c8e4cff9d85ef3efcd84758 100644 (file)
@@ -1,10 +1,10 @@
 /* This file is part of*
- * ====================================================== 
+ * ======================================================
  *
  *           LyX, The Document Processor
- *      
+ *
  *           Copyright 2000-2001 The LyX Team.
- * 
+ *
  * ====================================================== */
 
 #include <config.h>
@@ -76,8 +76,8 @@ void InsetCitation::edit(BufferView * bv, bool)
 
 int InsetCitation::ascii(Buffer const *, ostream & os, int) const
 {
-        os << "[" << getContents() << "]";
-        return 0;
+       os << "[" << getContents() << "]";
+       return 0;
 }
 
 // Have to overwrite the default InsetCommand method in order to check that
@@ -102,7 +102,7 @@ int InsetCitation::latex(Buffer const * buffer, ostream & os,
             it != getContents().end(); ++it) {
                if (*it != ' ') content += *it;
        }
-       
+
        os << "{" << content << "}";
 
        return 0;