Changeset 41768 in webkit


Ignore:
Timestamp:
Mar 17, 2009 10:25:10 AM (15 years ago)
Author:
xan@webkit.org
Message:

2009-03-17 Xan Lopez <xlopez@igalia.com>

Reviewed by Holger Freyther.

https://bugs.webkit.org/show_bug.cgi?id=24592
[GTK] Crash in FcPatternHash

Style fixes.

  • platform/graphics/gtk/FontPlatformDataGtk.cpp: (WebCore::FontPlatformData::operator=):
  • platform/graphics/gtk/FontPlatformDataPango.cpp:
Location:
trunk/WebCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r41767 r41768  
     12009-03-17  Xan Lopez  <xlopez@igalia.com>
     2
     3        Reviewed by Holger Freyther.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=24592
     6        [GTK] Crash in FcPatternHash
     7
     8        Style fixes.
     9
     10        * platform/graphics/gtk/FontPlatformDataGtk.cpp:
     11        (WebCore::FontPlatformData::operator=):
     12        * platform/graphics/gtk/FontPlatformDataPango.cpp:
     13
    1142009-03-17  Xan Lopez  <xlopez@igalia.com>
    215
  • trunk/WebCore/platform/graphics/gtk/FontPlatformDataGtk.cpp

    r41762 r41768  
    174174
    175175    if (other.m_scaledFont)
    176         cairo_scaled_font_reference (other.m_scaledFont);
     176        cairo_scaled_font_reference(other.m_scaledFont);
    177177    if (m_scaledFont)
    178178        cairo_scaled_font_destroy(m_scaledFont);
  • trunk/WebCore/platform/graphics/gtk/FontPlatformDataPango.cpp

    r41767 r41768  
    4848namespace WebCore {
    4949
    50   PangoFontMap* FontPlatformData::m_fontMap = 0;
    51   GHashTable* FontPlatformData::m_hashTable = 0;
     50PangoFontMap* FontPlatformData::m_fontMap = 0;
     51GHashTable* FontPlatformData::m_hashTable = 0;
    5252
    5353FontPlatformData::FontPlatformData(const FontDescription& fontDescription, const AtomicString& familyName)
Note: See TracChangeset for help on using the changeset viewer.