SVN_SILENT: Remove useless semicolons

svn path=/trunk/KDE/kdebase/workspace/libs/plasma/; revision=810938
This commit is contained in:
Gilles Chauvin 2008-05-21 21:49:14 +00:00
parent 81985d2b00
commit 937c17caae
2 changed files with 7 additions and 7 deletions

View File

@ -35,18 +35,18 @@
#include <QtGui/QTextFormat>
Q_DECLARE_METATYPE(TestEngine::MyUserType);
Q_DECLARE_METATYPE(TestEngine::MyUserType)
TestEngine::TestEngine(QObject *parent, const QVariantList &args)
: Plasma::DataEngine(parent, args)
{
}; // ctor()
} // ctor()
TestEngine::~TestEngine()
{
}; // dtor()
} // dtor()
void TestEngine::init()
@ -164,15 +164,15 @@ void TestEngine::init()
QVariant v;
v.setValue(userType);
setData(dsn, "UserType", v);
}; // init()
} // init()
bool TestEngine::sourceRequestEvent(const QString &source)
{
// Nothing to do...
Q_UNUSED(source);
Q_UNUSED(source)
return true;
}; // sourceRequestEvent()
} // sourceRequestEvent()
#include "testengine.moc"

View File

@ -30,7 +30,7 @@
class TestEngine : public Plasma::DataEngine
{
Q_OBJECT;
Q_OBJECT
public:
struct MyUserType {