Changeset 53276 in webkit


Ignore:
Timestamp:
Jan 14, 2010 11:20:27 AM (14 years ago)
Author:
tonikitoo@webkit.org
Message:

Missing fileSystemPath() method in Qt KURL implementation https://bugs.webkit.org/show_bug.cgi?id=33614

Patch by Diego Gonzalez <diego.gonzalez@openbossa.org> on 2010-01-14
Reviewed by Kenneth Christiansen.

No new tests.

  • platform/qt/KURLQt.cpp:

(WebCore::KURL::fileSystemPath):

Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r53274 r53276  
     12010-01-14  Diego Gonzalez  <diego.gonzalez@openbossa.org>
     2
     3        Reviewed by Kenneth Christiansen.
     4
     5        [Qt] Missing fileSystemPath() method in Qt KURL implementation
     6        https://bugs.webkit.org/show_bug.cgi?id=33614
     7
     8        No new tests.
     9
     10        * platform/qt/KURLQt.cpp:
     11        (WebCore::KURL::fileSystemPath):
     12
    1132010-01-13  Alexey Proskuryakov  <ap@apple.com>
    214
  • trunk/WebCore/platform/qt/KURLQt.cpp

    r40362 r53276  
    9696String KURL::fileSystemPath() const
    9797{
    98     notImplemented();
    99     return String();
     98    if (!isValid() || !protocolIs("file"))
     99        return String();
     100
     101    return String(path());
    100102}
    101103
Note: See TracChangeset for help on using the changeset viewer.