From a3e04e576bbeec342d23e017afcc8dd8f2eb1947 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Wed, 23 Sep 2009 07:45:14 +0000 Subject: [PATCH] Compile fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_8_BRANCH@62028 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/richtext/richtextbuffer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/richtext/richtextbuffer.cpp b/src/richtext/richtextbuffer.cpp index 8214ef3eb1..7f30af716e 100644 --- a/src/richtext/richtextbuffer.cpp +++ b/src/richtext/richtextbuffer.cpp @@ -4177,13 +4177,13 @@ void wxRichTextParagraph::ApplyParagraphStyle(const wxTextAttrEx& attr, const wx // centering, right-justification if (attr.HasAlignment() && GetAttributes().GetAlignment() == wxTEXT_ALIGNMENT_CENTRE) { - int rightIndent = ConvertTenthsMMToPixels(dc, attr.GetRightIndent()); + int rightIndent = ConvertTenthsMMToPixels(* g_globalDC, attr.GetRightIndent()); pos.x = (rect.GetWidth() - pos.x - rightIndent - size.x)/2 + pos.x; line->SetPosition(pos); } else if (attr.HasAlignment() && GetAttributes().GetAlignment() == wxTEXT_ALIGNMENT_RIGHT) { - int rightIndent = ConvertTenthsMMToPixels(dc, attr.GetRightIndent()); + int rightIndent = ConvertTenthsMMToPixels(* g_globalDC, attr.GetRightIndent()); pos.x = rect.GetWidth() - size.x - rightIndent; line->SetPosition(pos); }