]> git.lyx.org Git - lyx.git/blobdiff - src/support/docstring.h
Fix layout bug. Pasting text into a cell tried to set Standard layout, because
[lyx.git] / src / support / docstring.h
index 29fe1caf8d6c9483c76fded6bce0427e8e4d6877..a98bbaa71bf038cafca27b6dbd42ea8f0dd8b0a6 100644 (file)
 
 namespace lyx {
 
-/// String type for storing the main text in UCS4 encoding
+/**
+ * String type for storing the main text in UCS4 encoding.
+ * Use std::string only in cases 7-bit ASCII is to be manipulated
+ * within the variable.
+ */
 typedef std::basic_string<char_type> docstring;
 
 /// Creates a docstring from a C string of ASCII characters