]> git.lyx.org Git - lyx.git/blobdiff - src/support/textutils.h
remove commented HAVE_SSTREAM code
[lyx.git] / src / support / textutils.h
index e54a6aedb1a932b1e2cffc80f9e851882efa4bb5..20dd4d7751857990ae615e9882fba02b03ea6ddf 100644 (file)
 
 #include <cctype>
 
-//
+///
 inline
 bool IsNewlineChar(char c) {
        return (c == LyXParagraph::META_NEWLINE);
 }
 
 
-//
+///
 inline
 bool IsSeparatorChar(char c) {
        return (c == ' ');
 }
 
 
-//
+///
 inline
 bool IsHfillChar(char c) {
        return (c == LyXParagraph::META_HFILL);
 }
 
 
-//
+///
 inline
 bool IsInsetChar(char c) {
        return (c == LyXParagraph::META_INSET);
@@ -43,7 +43,7 @@ bool IsInsetChar(char c) {
 
 
 #ifndef NEW_INSETS
-//
+///
 inline
 bool IsFloatChar(char c) {
        return (c == LyXParagraph::META_FOOTNOTE
@@ -57,14 +57,14 @@ bool IsFloatChar(char c) {
 #endif
 
 
-//
+///
 inline
 bool IsLineSeparatorChar(char c) {
        return (c == ' ');
 }
 
 
-//
+///
 inline
 bool IsKommaChar(char c) {
        return (c == ',' 
@@ -95,7 +95,7 @@ bool IsKommaChar(char c) {
 }
 
 
-//
+///
 inline
 bool IsLetterChar(unsigned char c) {
        return ((c >= 'A' && c <= 'Z')
@@ -104,21 +104,21 @@ bool IsLetterChar(unsigned char c) {
 }
 
 
-//
+///
 inline
 bool IsPrintable(unsigned char c) {
        return (c >= ' ');
 }
 
 
-//
+///
 inline
 bool IsPrintableNonspace(unsigned char c) {
        return (c > ' ');
 }
 
 
-// Word is not IsSeparator or IsKomma or IsHfill or IsFloat or IsInset. 
+/// Word is not IsSeparator or IsKomma or IsHfill or IsFloat or IsInset. 
 inline
 bool IsWordChar(unsigned char c) {
        return !( IsSeparatorChar( c )
@@ -131,7 +131,7 @@ bool IsWordChar(unsigned char c) {
 }
 
 
-//
+///
 inline
 bool IsLetterCharOrDigit(char ch)
 {