]> git.lyx.org Git - features.git/blobdiff - src/insets/insetquotes.C
last updates from 1.0.4, no more updates expected from that branch now
[features.git] / src / insets / insetquotes.C
index 865f5294b111d2b413acb9f62ec6bf57b25df4ea..f90175b16bdce14398a2fcb96e3682d4c4484a55 100644 (file)
 #include "buffer.h"
 #include "LaTeXFeatures.h"
 
-//     $Id: insetquotes.C,v 1.1 1999/09/27 18:44:39 larsbj Exp $       
+//     $Id: insetquotes.C,v 1.2 1999/10/02 14:01:04 larsbj Exp $       
 
 #if !defined(lint) && !defined(WITH_WARNINGS)
-static char vcid[] = "$Id: insetquotes.C,v 1.1 1999/09/27 18:44:39 larsbj Exp $";
+static char vcid[] = "$Id: insetquotes.C,v 1.2 1999/10/02 14:01:04 larsbj Exp $";
 #endif /* lint */
 
 // Quotes. Used for the various quotes. German, English, French,
@@ -285,14 +285,14 @@ int InsetQuotes::DocBook(LString &file)
 {
        if(times == InsetQuotes::DoubleQ) {
                if (side == InsetQuotes::LeftQ)
-                       file += "„";
+                       file += "“";
                else
-                       file += "”";
+                       file += "”";
        } else {
                if (side == InsetQuotes::LeftQ)
-                       file += "‚";
+                       file += "‘";
                else
-                       file += "’";
+                       file += "’";
        }
        return 0;
 }