]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxstring.h
Add a bunch of c_str() for string stream uses; remove lyxfunc symbol-insert.
[lyx.git] / src / support / lyxstring.h
index c594ed99b5b5ebccacd424cb8ddc98d664795f94..d8b0df2cbdc1d4ed424b1b26de0f6a734621977c 100644 (file)
@@ -33,7 +33,7 @@
 
 #include <cstring> // for size_t
 
-/* A string class for LyX
+/** A string class for LyX
   
   This is a permanent String class. It is modeled closely after the C++ STL
   string class. In comparison with STL string lyxstring lack support for
@@ -159,7 +159,7 @@ public:
        /// #lyxstring x("abc", 2) -> "ab"#
        lyxstring(value_type const *, size_type n);
        
-       /// #lyxstring x("abc")#
+       // #lyxstring x("abc")#
        lyxstring(value_type const *);
        
        /// lyxstring(5, 'n') -> "nnnnn"