Changeset 44383 in webkit


Ignore:
Timestamp:
Jun 3, 2009 8:29:06 AM (15 years ago)
Author:
Adam Roben
Message:

Windows build fix after r44379

  • svg/graphics/SVGImage.cpp: Move EmptyClients.h back down below the other #includes to fix a compiler warning on Windows.
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r44382 r44383  
     12009-06-03  Adam Roben  <aroben@apple.com>
     2
     3        Windows build fix after r44379
     4
     5        * svg/graphics/SVGImage.cpp: Move EmptyClients.h back down below the
     6        other #includes to fix a compiler warning on Windows.
     7
    182009-06-02  Kenneth Rohde Christiansen  <kenneth.christiansen@openbossa.org>
    29
  • trunk/WebCore/svg/graphics/SVGImage.cpp

    r44379 r44383  
    3131#include "CachedPage.h"
    3232#include "DocumentLoader.h"
    33 #include "EmptyClients.h"
    3433#include "FloatRect.h"
    3534#include "Frame.h"
     
    4948#include "Settings.h"
    5049
     50// Moving this #include above FrameLoader.h causes the Windows build to fail due to warnings about
     51// alignment in Timer<FrameLoader>. It seems that the definition of EmptyFrameLoaderClient is what
     52// causes this (removing that definition fixes the warnings), but it isn't clear why.
     53#include "EmptyClients.h"
     54
    5155namespace WebCore {
    5256
Note: See TracChangeset for help on using the changeset viewer.