typo fix in Restore(): __GTK20__ -> __WXGTK20__ (patch 984852)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28161 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2004-07-04 11:13:23 +00:00
parent b88ccc4e8e
commit 387fd89d8c
2 changed files with 2 additions and 2 deletions

View File

@@ -944,7 +944,7 @@ bool wxTopLevelWindowGTK::IsMaximized() const
void wxTopLevelWindowGTK::Restore()
{
#ifdef __GTK20__
#ifdef __WXGTK20__
// "Present" seems similar enough to "restore"
gtk_window_present( GTK_WINDOW( m_widget ) );
#else