Removed special treatment of <<(const char*)
authorSebastian Goth <seezer@roath.org>
Mon, 28 Jul 2008 12:16:24 +0000 (14:16 +0200)
committerSebastian Goth <seezer@roath.org>
Wed, 30 Jul 2008 09:25:01 +0000 (11:25 +0200)
src/common/logger.h

index c372a11..113fc56 100644 (file)
@@ -42,7 +42,6 @@ class Logger {
     template<typename T>
     inline Logger &operator<<(const T &value) { _stream << value; return *this; }
     inline Logger &operator<<(const QStringList & t) { _stream << t.join(" "); return *this; }
-    inline Logger &operator<<(const char* t) { _stream << QString::fromLocal8Bit(t); return *this; }
     inline Logger &operator<<(bool t) { _stream << (t ? "true" : "false"); return *this; }
 
   private: