correct closing comments in #endifs (patch 1756990)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@47637 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-07-21 23:54:55 +00:00
parent 9222c61388
commit b0f76951bc
10 changed files with 12 additions and 12 deletions

View File

@@ -257,4 +257,4 @@ bool wxToggleButton::Create( wxWindow* parent, wxWindowID id,
return true;
}
#endif // wxUSE_TOGGLEBUTTON
#endif // wxUSE_TOGGLEBTN

View File

@@ -61,7 +61,7 @@ public:
#endif
#if !wxMOTIF_USE_RENDER_TABLE
WXFontList m_fontList; // Motif XmFontList
#else // if wxUSE_RENDER_TABLE
#else // if wxMOTIF_USE_RENDER_TABLE
WXRenderTable m_renderTable; // Motif XmRenderTable
WXRendition m_rendition; // Motif XmRendition
#endif
@@ -147,7 +147,7 @@ wxXFont::~wxXFont()
if (m_fontList)
XmFontListFree ((XmFontList) m_fontList);
m_fontList = NULL;
#else // if wxUSE_RENDER_TABLE
#else // if wxMOTIF_USE_RENDER_TABLE
if (m_renderTable)
XmRenderTableFree ((XmRenderTable) m_renderTable);
m_renderTable = NULL;