| Index: Source/core/layout/LayoutTableCol.h
|
| diff --git a/Source/core/layout/LayoutTableCol.h b/Source/core/layout/LayoutTableCol.h
|
| index 19b12e051bd40f16902dcfb153bc5cdd4c75b55e..dad0d39d16602d644d1a2a412e2541896753e420 100644
|
| --- a/Source/core/layout/LayoutTableCol.h
|
| +++ b/Source/core/layout/LayoutTableCol.h
|
| @@ -58,14 +58,14 @@ public:
|
| LayoutTableCol* enclosingColumnGroupIfAdjacentBefore() const
|
| {
|
| if (previousSibling())
|
| - return 0;
|
| + return nullptr;
|
| return enclosingColumnGroup();
|
| }
|
|
|
| LayoutTableCol* enclosingColumnGroupIfAdjacentAfter() const
|
| {
|
| if (nextSibling())
|
| - return 0;
|
| + return nullptr;
|
| return enclosingColumnGroup();
|
| }
|
|
|
| @@ -95,8 +95,8 @@ private:
|
| virtual bool canHaveChildren() const override;
|
| virtual DeprecatedPaintLayerType layerTypeRequired() const override { return NoDeprecatedPaintLayer; }
|
|
|
| - virtual LayoutRect clippedOverflowRectForPaintInvalidation(const LayoutBoxModelObject* paintInvalidationContainer, const PaintInvalidationState* = 0) const override;
|
| - virtual void imageChanged(WrappedImagePtr, const IntRect* = 0) override;
|
| + virtual LayoutRect clippedOverflowRectForPaintInvalidation(const LayoutBoxModelObject* paintInvalidationContainer, const PaintInvalidationState* = nullptr) const override;
|
| + virtual void imageChanged(WrappedImagePtr, const IntRect* = nullptr) override;
|
|
|
| virtual void styleDidChange(StyleDifference, const ComputedStyle* oldStyle) override;
|
|
|
|
|