Changeset 147615 in webkit


Ignore:
Timestamp:
Apr 4, 2013 1:39:23 AM (11 years ago)
Author:
commit-queue@webkit.org
Message:

[ATK] build fails when accessibility is turned off
https://bugs.webkit.org/show_bug.cgi?id=113699

Patch by Ed Bartosh <bartosh@gmail.com> on 2013-04-04
Reviewed by Gyuyoung Kim.

  • editing/atk/FrameSelectionAtk.cpp: Wrapped accessibility code in #if HAVE(ACCESSIBILITY)
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r147614 r147615  
     12013-04-04  Ed Bartosh  <bartosh@gmail.com>
     2
     3        [ATK] build fails when accessibility is turned off
     4        https://bugs.webkit.org/show_bug.cgi?id=113699
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        * editing/atk/FrameSelectionAtk.cpp: Wrapped accessibility code in #if HAVE(ACCESSIBILITY)
     9
    1102013-04-04  Seokju Kwon  <seokju.kwon@gmail.com>
    211
  • trunk/Source/WebCore/editing/atk/FrameSelectionAtk.cpp

    r146726 r147615  
    2020#include "config.h"
    2121#include "FrameSelection.h"
     22
     23#if HAVE(ACCESSIBILITY)
    2224
    2325#include "AXObjectCache.h"
     
    108110
    109111} // namespace WebCore
     112
     113#endif // HAVE(ACCESSIBILITY)
Note: See TracChangeset for help on using the changeset viewer.