~ubuntu-branches/ubuntu/quantal/muse/quantal

« back to all changes in this revision

Viewing changes to m4/qt.m4

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2005-08-23 17:19:39 UTC
  • mto: (4.1.1 breezy) (1.1.9) (10.1.6 sid)
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: james.westby@ubuntu.com-20050823171939-hd8fgzokb4dbj007
Tags: upstream-0.7.1+0.7.2pre2
ImportĀ upstreamĀ versionĀ 0.7.1+0.7.2pre2

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
              #include <qapplication.h>
149
149
              int main(int argc, char **argv)
150
150
              {
151
 
                QApplication app(argc, argv);
 
151
                QApplication app(argc, argv, false);
152
152
        
153
153
              }
154
154
            ],[
211
211
            #include <qglobal.h>
212
212
            int main()
213
213
            {
214
 
              if (QT_VERSION < $qt_version) return(1);
 
214
            int version = ($qt_major_version << 16)
 
215
               + ($qt_minor_version << 8)
 
216
               + $qt_micro_version;
 
217
              if (QT_VERSION < version) return(1);
215
218
              return(0);
216
219
            }
217
220
          ],[