Blob Blame History Raw
diff -urN fontmatrix-0.9.99-Source.old/src/fmsharestruct.h fontmatrix-0.9.99-Source/src/fmsharestruct.h
--- fontmatrix-0.9.99-Source.old/src/fmsharestruct.h	2011-10-03 11:32:54.364203920 +0530
+++ fontmatrix-0.9.99-Source/src/fmsharestruct.h	2013-12-04 21:19:22.996748833 +0530
@@ -18,6 +18,7 @@
 
 #include <QString>
 #include <QStringList>
+#include <QDebug>
 
 struct OTFSet
 {
@@ -83,14 +84,14 @@
 	void dump() const
 	{
 		QString ds("glyph %1; log %2; xadv %3; yadv %4; xof %5; yof %6; char %7; hyph %8");
-		qDebug(ds.arg(glyph)
+		qDebug() << ds.arg(glyph)
 				.arg(log)
 				.arg(xadvance)
 				.arg(yadvance)
 				.arg(xoffset)
 				.arg(yoffset)
 				.arg(QChar(lChar))
-				.arg(hyphen.first.count()).toLocal8Bit());
+				.arg(hyphen.first.count());
 	}
 };