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

« back to all changes in this revision

Viewing changes to qcm/growl.qcm

  • Committer: Bazaar Package Importer
  • Author(s): Jan Niehusmann
  • Date: 2008-04-14 18:57:30 UTC
  • mfrom: (2.1.9 hardy)
  • Revision ID: james.westby@ubuntu.com-20080414185730-528re3zp0m2hdlhi
Tags: 0.11-8
* added CONFIG -= link_prl to .pro files and removed dependencies
  which are made unnecessary by this change
* Fix segfault when closing last chat tab with qt4.4
  (This is from upstream svn, rev. 1101) (Closes: Bug#476122)

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
        qc_growl(Conf *c) : ConfObj(c) {}
15
15
        QString name() const { return "Growl"; }
16
16
        QString shortname() const { return "growl"; }
 
17
#ifndef Q_WS_MAC
 
18
        QString checkString() const { return QString(); }
 
19
#endif
17
20
 
18
21
        // TODO: This should go into ConfObj
19
22
    bool checkFramework(const QString &path, const QString &name)
28
31
        if(!path.isEmpty())
29
32
            extra += QString("-F") + path + ' ';
30
33
        extra += QString("-framework ") + name;
31
 
        if(!conf->doCompileAndLink(str, extra))
 
34
        if(!conf->doCompileAndLink(str, QStringList(), extra, "", NULL))
32
35
            return false;
33
36
        return true;
34
37
    }