Skip to content
Snippets Groups Projects
Commit 2c3d364a authored by Fons Rademakers's avatar Fons Rademakers
Browse files

remove special WIN32 ifdef, not needed anymore.

git-svn-id: http://root.cern.ch/svn/root/trunk@6334 27541ba8-7e3a-0410-8455-c3a389f83636
parent 8d5f192a
Branches
Tags
No related merge requests found
// @(#)root/base:$Name: $:$Id: TAttText.cxx,v 1.13 2002/09/14 11:12:47 brun Exp $ // @(#)root/base:$Name: $:$Id: TAttText.cxx,v 1.14 2003/01/22 11:23:02 rdm Exp $
// Author: Rene Brun 12/12/94 // Author: Rene Brun 12/12/94
/************************************************************************* /*************************************************************************
...@@ -173,7 +173,6 @@ void TAttText::Modify() ...@@ -173,7 +173,6 @@ void TAttText::Modify()
else tsize = fTextSize*hh; else tsize = fTextSize*hh;
if (fTextFont%10 > 2) tsize = fTextSize; if (fTextFont%10 > 2) tsize = fTextSize;
#ifndef WIN32
again: again:
if (gVirtualX->HasTTFonts()) { if (gVirtualX->HasTTFonts()) {
if (gVirtualX->GetTextFont() != fTextFont) { if (gVirtualX->GetTextFont() != fTextFont) {
...@@ -263,10 +262,6 @@ again: ...@@ -263,10 +262,6 @@ again:
gVirtualX->SetTextFont(fTextFont); gVirtualX->SetTextFont(fTextFont);
gVirtualX->SetTextSize(tsize); gVirtualX->SetTextSize(tsize);
} }
#else
if (gVirtualX->GetTextFont() != fTextFont) gVirtualX->SetTextFont(fTextFont);
if (gVirtualX->GetTextSize() != tsize) gVirtualX->SetTextSize(tsize);
#endif
gVirtualX->SetTextAlign(fTextAlign); gVirtualX->SetTextAlign(fTextAlign);
gVirtualX->SetTextColor(fTextColor); gVirtualX->SetTextColor(fTextColor);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment