Changeset 56575 in webkit


Ignore:
Timestamp:
Mar 25, 2010 4:09:32 PM (14 years ago)
Author:
Laszlo Gombos
Message:

2010-03-25 Laszlo Gombos <Laszlo Gombos>

Unreviewed, build fix.

[Qt] Fix QtLauncher guards.

  • QtLauncher/main.cpp: (LauncherWindow::showFPS): (LauncherWindow::updateFPS):
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r56566 r56575  
     12010-03-25  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Unreviewed, build fix.
     4
     5        [Qt] Fix QtLauncher guards.
     6
     7        * QtLauncher/main.cpp:
     8        (LauncherWindow::showFPS):
     9        (LauncherWindow::updateFPS):
     10
    1112010-03-25  Yury Semikhatsky  <yurys@chromium.org>
    212
  • trunk/WebKitTools/QtLauncher/main.cpp

    r56553 r56575  
    8181static bool gUseTiledBackingStore = false;
    8282
    83 #ifdef Q_WS_MAEMO_5 || defined(Q_WS_S60)
     83#if defined(Q_WS_MAEMO_5) || defined(Q_WS_S60)
    8484static bool gUseFrameFlattening = true;
    8585#else
     
    663663
    664664    if (!enable) {
    665 #ifdef Q_WS_MAEMO_5 && defined(Q_WS_S60)
     665#if defined(Q_WS_MAEMO_5) && defined(Q_WS_S60)
    666666        setWindowTitle("");
    667667#else
     
    704704    QString fpsStatusText = QString("Current FPS: %1").arg(fps);
    705705
    706 #ifdef Q_WS_MAEMO_5 && defined(Q_WS_S60)
     706#if defined(Q_WS_MAEMO_5) && defined(Q_WS_S60)
    707707    setWindowTitle(fpsStatusText);
    708708#else
Note: See TracChangeset for help on using the changeset viewer.