~ubuntu-branches/ubuntu/quantal/arora/quantal

« back to all changes in this revision

Viewing changes to src/aboutdialog.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Roderick B. Greening
  • Date: 2009-10-01 16:08:58 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20091001160858-h1wnt3ddyzl07nih
Tags: 0.10.0-0ubuntu1
* New upstream release 
* Remove patches
  - kubuntu_01_google_lucky.diff - Open Search now used upstream
  - kubuntu_02_default_bookmarks.diff - bookmarks fixed upstream

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
#include <qtextedit.h>
28
28
#include <qtextstream.h>
29
29
 
30
 
#if defined(WEBKIT_TRUNK)
 
30
#if QT_VERSION >= 0x040600 || defined(WEBKIT_TRUNK)
31
31
#include <qwebkitversion.h>
32
32
#endif
33
33
 
39
39
    logo->setPixmap(qApp->windowIcon().pixmap(128, 128));
40
40
    name->setText(qApp->applicationName());
41
41
    version->setText(qApp->applicationVersion());
42
 
#if defined(WEBKIT_TRUNK)
 
42
#if QT_VERSION >= 0x040600 || defined(WEBKIT_TRUNK)
43
43
    webkitVersion->setText(tr("WebKit version: %1").arg(qWebKitVersion()));
44
44
#else
45
45
    webkitVersion->hide();