]> git.lyx.org Git - lyx.git/blobdiff - src/TexStream.cpp
add the background image to distribution tarball
[lyx.git] / src / TexStream.cpp
index 3ac285ee13b15d4f3c7c53ec0311cd7b99e49a17..dc1c43c2a9846c318147e0d24ce9d4092ebc288c 100644 (file)
@@ -34,7 +34,7 @@ public:
        int column() const { return column_; }
 
 protected:
-       int overflow(int);
+       int_type overflow(int_type);
        int sync();
 
 private:
@@ -52,7 +52,7 @@ TexStreamBuffer::TexStreamBuffer(TexStreamBase *sb, TexRow * texrow)
        setg(0, 0, 0);
 }
 
-int TexStreamBuffer::overflow(int c)
+TexStreamBuffer::int_type TexStreamBuffer::overflow(TexStreamBuffer::int_type c)
 {
        if (c == '\n') {
                ++line_;