]> git.lyx.org Git - lyx.git/blobdiff - src/support/lyxstring.h
small changes read changelog
[lyx.git] / src / support / lyxstring.h
index c594ed99b5b5ebccacd424cb8ddc98d664795f94..5520ada245dd8ca9a4bb805d1d72685f214316e0 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"
@@ -441,6 +441,10 @@ public:
        lyxstring & replace(size_type i, size_type n,
                            size_type n2, value_type c);
 
+       /// FY! FY! FY! go away !
+       lyxstring & replace(size_type i, size_type n,
+                           value_type c);
+
        ///
        lyxstring & replace(iterator i, iterator i2, const lyxstring & str);