Title: [100106] trunk/Source/WebCore
- Revision
- 100106
- Author
- [email protected]
- Date
- 2011-11-14 00:16:07 -0800 (Mon, 14 Nov 2011)
Log Message
[WX] Make FontPlatformData::m_size private
https://bugs.webkit.org/show_bug.cgi?id=72214
Reviewed by Andreas Kling.
Also change the order of member variables to match
the order in the constructor to fix many warnings.
* platform/graphics/wx/FontPlatformData.h:
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (100105 => 100106)
--- trunk/Source/WebCore/ChangeLog 2011-11-14 08:15:26 UTC (rev 100105)
+++ trunk/Source/WebCore/ChangeLog 2011-11-14 08:16:07 UTC (rev 100106)
@@ -1,3 +1,15 @@
+2011-11-13 Patrick Gansterer <[email protected]>
+
+ [WX] Make FontPlatformData::m_size private
+ https://bugs.webkit.org/show_bug.cgi?id=72214
+
+ Reviewed by Andreas Kling.
+
+ Also change the order of member variables to match
+ the order in the constructor to fix many warnings.
+
+ * platform/graphics/wx/FontPlatformData.h:
+
2011-11-13 Adam Barth <[email protected]>
Document::initSecurityOrigin should return earlier more often
Modified: trunk/Source/WebCore/platform/graphics/wx/FontPlatformData.h (100105 => 100106)
--- trunk/Source/WebCore/platform/graphics/wx/FontPlatformData.h 2011-11-14 08:15:26 UTC (rev 100105)
+++ trunk/Source/WebCore/platform/graphics/wx/FontPlatformData.h 2011-11-14 08:16:07 UTC (rev 100106)
@@ -166,15 +166,14 @@
void cacheNSFont();
#endif
- float m_size;
-
#ifndef NDEBUG
String description() const;
#endif
private:
- WTF::RefPtr<FontHolder> m_font;
FontState m_fontState;
+ WTF::RefPtr<FontHolder> m_font;
+ float m_size;
#if OS(DARWIN)
NSFont* m_nsFont;
#endif
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes