[Marble-commits] KDE/kdeedu/marble/src/lib
Dennis Nienhüser
earthwings at gentoo.org
Sun Nov 15 17:35:54 CET 2009
SVN commit 1049654 by nienhueser:
Add qt module in #include, fix compiler warnings about unused parameters
M +3 -3 MarbleDebug.h
--- trunk/KDE/kdeedu/marble/src/lib/MarbleDebug.h #1049653:1049654
@@ -1,7 +1,7 @@
#ifndef MARBLEDEBUG_H
#define MARBLEDEBUG_H
-#include <QDebug>
+#include <QtCore/QDebug>
#include "marble_export.h"
@@ -11,8 +11,8 @@
*/
class NullDevice : public QIODevice {
public:
- qint64 readData ( char * data, qint64 maxSize ) { return -1; };
- qint64 writeData ( const char * data, qint64 maxSize ) { return maxSize; };
+ qint64 readData ( char * /*data*/, qint64 /*maxSize*/ ) { return -1; };
+ qint64 writeData ( const char * /*data*/, qint64 maxSize ) { return maxSize; };
};
/**
More information about the Marble-commits
mailing list