// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
-#pragma implementation "dcclient.h"
-#endif
-
// For compilers that support precompilation, includes "wx.h".
#include "wx/wxprec.h"
PangoContext *oldContext = m_context;
// We might want to use the X11 context for faster
- // rendering on screen
+ // rendering on screen.
+ // MR: Lets not want to do this, as this introduces libpangox dependancy.
+#if 0
if (m_font.GetNoAntiAliasing())
m_context = m_owner->GtkGetPangoX11Context();
else
- m_context = m_owner->GtkGetPangoDefaultContext();
+#endif
+ m_context = m_owner->GtkGetPangoDefaultContext();
// If we switch back/forth between different contexts
// we also have to create a new layout. I think so,