Changeset 51505 in webkit


Ignore:
Timestamp:
Nov 30, 2009 12:42:19 PM (14 years ago)
Author:
eric@webkit.org
Message:

2009-11-30 Laszlo Gombos <Laszlo Gombos>

Reviewed by Kenneth Rohde Christiansen.

[Qt] Remove obsolete PLATFORM(KDE) code
https://bugs.webkit.org/show_bug.cgi?id=31958

KDE is now using unpatched QtWebKit.

  • parser/Lexer.cpp: Remove obsolete KDE_USE_FINAL guard
  • wtf/Platform.h: Remove PLATFORM(KDE) definition and code section that is guarded with it.
Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r51484 r51505  
     12009-11-30  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
     2
     3        Reviewed by Kenneth Rohde Christiansen.
     4
     5        [Qt] Remove obsolete PLATFORM(KDE) code
     6        https://bugs.webkit.org/show_bug.cgi?id=31958
     7
     8        KDE is now using unpatched QtWebKit.
     9
     10        * parser/Lexer.cpp: Remove obsolete KDE_USE_FINAL guard
     11        * wtf/Platform.h: Remove PLATFORM(KDE) definition and code
     12        section that is guarded with it.
     13
    1142009-11-30  Jan-Arve Sæther  <jan-arve.saether@nokia.com>
    215
  • trunk/JavaScriptCore/parser/Lexer.cpp

    r49365 r51505  
    4040using namespace JSC;
    4141
    42 #ifndef KDE_USE_FINAL
    4342#include "Grammar.h"
    44 #endif
    45 
    4643#include "Lookup.h"
    4744#include "Lexer.lut.h"
  • trunk/JavaScriptCore/wtf/Platform.h

    r51467 r51505  
    142142/* PLATFORM(CHROMIUM) */
    143143/* PLATFORM(QT) */
     144/* PLATFORM(WX) */
    144145/* PLATFORM(GTK) */
     146/* PLATFORM(HAIKU) */
    145147/* PLATFORM(MAC) */
    146148/* PLATFORM(WIN) */
     
    149151#elif defined(BUILDING_QT__)
    150152#define WTF_PLATFORM_QT 1
    151 
    152 /* PLATFORM(KDE) */
    153 #if defined(BUILDING_KDE__)
    154 #define WTF_PLATFORM_KDE 1
    155 #endif
    156 
    157153#elif defined(BUILDING_WX__)
    158154#define WTF_PLATFORM_WX 1
     
    477473#endif  /* PLATFORM(WINCE) && !PLATFORM(QT) */
    478474
    479 /* for Unicode, KDE uses Qt */
    480 #if PLATFORM(KDE) || PLATFORM(QT)
     475#if PLATFORM(QT)
    481476#define WTF_USE_QT4_UNICODE 1
    482477#elif PLATFORM(WINCE)
Note: See TracChangeset for help on using the changeset viewer.