summaryrefslogtreecommitdiffstats
path: root/src/ftextstream.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ftextstream.h')
-rw-r--r--src/ftextstream.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/ftextstream.h b/src/ftextstream.h
index d073f40..bfc5bd5 100644
--- a/src/ftextstream.h
+++ b/src/ftextstream.h
@@ -23,7 +23,6 @@ class FTextStream
FTextStream &operator<<( char );
FTextStream &operator<<( const char *);
- FTextStream &operator<<( const QString & );
FTextStream &operator<<( const QCString & );
FTextStream &operator<<( signed short );
FTextStream &operator<<( unsigned short );
@@ -59,11 +58,6 @@ inline FTextStream &FTextStream::operator<<( const char* s)
return *this;
}
-inline FTextStream &FTextStream::operator<<( const QString & s)
-{
- return operator<<(s.data());
-}
-
inline FTextStream &FTextStream::operator<<( const QCString &s)
{
return operator<<(s.data());