FEATURE: Display close tab button into the tabs in search engine (Qt >= 4.5 only)

This commit is contained in:
Christophe Dumez 2009-11-26 21:11:37 +00:00
commit 893c5e6784
5 changed files with 46 additions and 3 deletions

View file

@ -1,6 +1,6 @@
/*
-----BEGIN QCMOD-----
name: Qt >= 4.3
name: Qt >= 4.4
-----END QCMOD-----
*/
class qc_qt4 : public ConfObj
@ -11,6 +11,9 @@ public:
QString shortname() const { return "Qt 4.4"; }
bool exec()
{
if(QT_VERSION >= 0x040500) {
conf->addDefine("QT_4_5");
}
return(QT_VERSION >= 0x040400);
}