Changeset 64282 in webkit


Ignore:
Timestamp:
Jul 29, 2010 9:13:56 AM (14 years ago)
Author:
Csaba Osztrogonác
Message:

2010-07-29 Csaba Osztrogonác <Csaba Osztrogonác>

Reviewed by Antonio Gomes.

Warning fix on platforms where XP_MACOSX is undefined.
https://bugs.webkit.org/show_bug.cgi?id=43192

  • DumpRenderTree/TestNetscapePlugIn/PluginObject.h: Use #if defined(XP_MACOSX) instead of #if XP_MACOSX .
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r64280 r64282  
     12010-07-29  Csaba Osztrogonác  <ossy@webkit.org>
     2
     3        Reviewed by Antonio Gomes.
     4
     5        Warning fix on platforms where XP_MACOSX is undefined.
     6        https://bugs.webkit.org/show_bug.cgi?id=43192
     7
     8        * DumpRenderTree/TestNetscapePlugIn/PluginObject.h:
     9        Use #if defined(XP_MACOSX) instead of #if XP_MACOSX .
     10
    1112010-07-29  Adam Roben  <aroben@apple.com>
    212
  • trunk/WebKitTools/DumpRenderTree/TestNetscapePlugIn/PluginObject.h

    r63409 r64282  
    2626#include <WebKit/npfunctions.h>
    2727
    28 #if XP_MACOSX
     28#if defined(XP_MACOSX)
    2929#if !defined(MAC_OS_X_VERSION_10_5) || MAC_OS_X_VERSION_MAX_ALLOWED < MAC_OS_X_VERSION_10_5
    3030#define BUILDING_ON_TIGER 1
     
    6767    NPEventModel eventModel;
    6868#endif
    69 #if XP_MACOSX && !defined(BUILDING_ON_TIGER)
     69#if defined(XP_MACOSX) && !defined(BUILDING_ON_TIGER)
    7070    void* coreAnimationLayer;
    7171#endif
     
    8181extern bool testWindowOpen(NPP npp);
    8282
    83 #if XP_MACOSX && !defined(BUILDING_ON_TIGER)
     83#if defined(XP_MACOSX) && !defined(BUILDING_ON_TIGER)
    8484extern void* createCoreAnimationLayer();
    8585#endif
Note: See TracChangeset for help on using the changeset viewer.