Changeset 56536 in webkit


Ignore:
Timestamp:
Mar 25, 2010 6:21:01 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-25 Tasuku Suzuki <tasuku.suzuki@nokia.com>

Reviewed by Eric Seidel.

[Qt]Fix compile error with QT_NO_DESKTOPSERVICES
https://bugs.webkit.org/show_bug.cgi?id=36533

  • Api/qwebsettings.cpp: (QWebSettings::enablePersistentStorage):
Location:
trunk/WebKit/qt
Files:
2 edited

Legend:

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

    r56473 r56536  
    10431043
    10441044    if (path.isEmpty()) {
     1045#ifndef QT_NO_DESKTOPSERVICES
    10451046        storagePath = QDesktopServices::storageLocation(QDesktopServices::DataLocation);
    1046 
     1047#endif
    10471048        if (storagePath.isEmpty())
    10481049            storagePath = WebCore::pathByAppendingComponent(QDir::homePath(), QCoreApplication::applicationName());
  • trunk/WebKit/qt/ChangeLog

    r56533 r56536  
     12010-03-25  Tasuku Suzuki  <tasuku.suzuki@nokia.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        [Qt]Fix compile error with QT_NO_DESKTOPSERVICES
     6        https://bugs.webkit.org/show_bug.cgi?id=36533
     7
     8        * Api/qwebsettings.cpp:
     9        (QWebSettings::enablePersistentStorage):
     10
    1112010-03-25  Tasuku Suzuki  <tasuku.suzuki@nokia.com>
    212
Note: See TracChangeset for help on using the changeset viewer.