~ubuntu-branches/ubuntu/quantal/psi/quantal

« back to all changes in this revision

Viewing changes to qcm/qt4.qcm

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2009-09-25 17:49:51 UTC
  • mfrom: (6.1.3 sid)
  • Revision ID: james.westby@ubuntu.com-20090925174951-lvm7kdap82o8xhn3
Tags: 0.13-1
* Updated to upstream version 0.13
* Set Standards-Version to 3.8.3

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
-----BEGIN QCMOD-----
3
 
name: Qt >= 4.1
 
3
name: Qt >= 4.4.0
4
4
-----END QCMOD-----
5
5
*/
6
6
class qc_qt4 : public ConfObj
7
7
{
8
8
public:
9
9
        qc_qt4(Conf *c) : ConfObj(c) {}
10
 
        QString name() const { return "Qt >= 4.2.3"; }
 
10
        QString name() const { return "Qt >= 4.4.0"; }
11
11
        QString shortname() const { return "qt4"; }
12
12
        bool exec()
13
13
        {
14
 
                return(QT_VERSION >= 0x040203);
 
14
                return(QT_VERSION >= 0x040400);
15
15
        }
16
16
};