4
0
mirror of https://github.com/QuasarApp/qca.git synced 2025-05-14 19:39:33 +00:00
Justin Karneges 9099d13145 add dnotify.qcm, and move all into qcm subdir
svn path=/trunk/kdesupport/qca/; revision=660175
2007-05-01 20:47:57 +00:00

21 lines
404 B
Plaintext

/*
-----BEGIN QCMOD-----
name: Qt >= 4.2
-----END QCMOD-----
*/
class qc_qt42 : public ConfObj
{
public:
qc_qt42(Conf *c) : ConfObj(c) {}
QString name() const { return "Qt >= 4.2"; }
QString shortname() const { return "qt42"; }
bool exec()
{
conf->debug(QString("QT_VERSION = 0x%1").arg(QString::number(QT_VERSION, 16)));
if(QT_VERSION >= 0x040200)
return true;
else
return false;
}
};