Changeset 59451 in webkit


Ignore:
Timestamp:
May 14, 2010 1:32:59 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-05-14 Benjamin Poulain <benjamin.poulain@nokia.com>

Reviewed by Laszlo Gombos.

[QT] Update the Symbian version for the user agent
https://bugs.webkit.org/show_bug.cgi?id=38389

Update the user agent for Symbian2 to Symbian4

  • Api/qwebpage.cpp: (QWebPage::userAgentForUrl):
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/Api/qwebpage.cpp

    r59026 r59451  
    32213221            firstPartTemp += QString::fromLatin1("/9.4");
    32223222            break;
     3223        case QSysInfo::SV_SF_2:
     3224            firstPartTemp += QString::fromLatin1("^2");
     3225            break;
     3226        case QSysInfo::SV_SF_3:
     3227            firstPartTemp += QString::fromLatin1("^3");
     3228            break;
     3229        case QSysInfo::SV_SF_4:
     3230            firstPartTemp += QString::fromLatin1("^4");
     3231            break;
    32233232        default:
    32243233            firstPartTemp += QString::fromLatin1("/Unknown");
  • trunk/WebKit/qt/ChangeLog

    r59449 r59451  
     12010-05-14  Benjamin Poulain  <benjamin.poulain@nokia.com>
     2
     3        Reviewed by Laszlo Gombos.
     4
     5        [QT] Update the Symbian version for the user agent
     6        https://bugs.webkit.org/show_bug.cgi?id=38389
     7
     8        Update the user agent for Symbian^2 to Symbian^4
     9
     10        * Api/qwebpage.cpp:
     11        (QWebPage::userAgentForUrl):
     12
    1132010-05-14  Dawit Alemayehu  <adawit@kde.org>
    214
Note: See TracChangeset for help on using the changeset viewer.