From: Vadim Zeitlin Date: Wed, 20 Jan 1999 19:55:13 +0000 (+0000) Subject: compilation fix (wxFAIL() must have a ';') X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5c721b14c6527ede25adb6345b5266622150b46f compilation fix (wxFAIL() must have a ';') git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1439 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/gtk/dataobj.cpp b/src/gtk/dataobj.cpp index 59dac39832..e6b756326a 100644 --- a/src/gtk/dataobj.cpp +++ b/src/gtk/dataobj.cpp @@ -43,7 +43,7 @@ wxDataFormat::wxDataFormat( wxDataType type ) } else { - wxFAIL_MSG( "invalid dataformat" ) + wxFAIL_MSG( "invalid dataformat" ); } m_hasAtom = FALSE; diff --git a/src/gtk1/dataobj.cpp b/src/gtk1/dataobj.cpp index 59dac39832..e6b756326a 100644 --- a/src/gtk1/dataobj.cpp +++ b/src/gtk1/dataobj.cpp @@ -43,7 +43,7 @@ wxDataFormat::wxDataFormat( wxDataType type ) } else { - wxFAIL_MSG( "invalid dataformat" ) + wxFAIL_MSG( "invalid dataformat" ); } m_hasAtom = FALSE;