removed extraneous semicolons

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@44990 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2007-03-20 21:05:09 +00:00
parent c6ba246b98
commit a7f8eb6d0f

View File

@@ -562,7 +562,7 @@ DECLARE_LOG_FUNCTION_IMPL(Status);
DECLARE_LOG_FUNCTION2_EXP_IMPL(Status, wxFrame *, pFrame, WXDLLIMPEXP_CORE); DECLARE_LOG_FUNCTION2_EXP_IMPL(Status, wxFrame *, pFrame, WXDLLIMPEXP_CORE);
#endif // wxUSE_GUI #endif // wxUSE_GUI
DECLARE_LOG_FUNCTION_PUBLIC(Status); DECLARE_LOG_FUNCTION_PUBLIC(Status)
// additional one: as wxLogError, but also logs last system call error code // additional one: as wxLogError, but also logs last system call error code
// and the corresponding error message if available // and the corresponding error message if available
@@ -572,7 +572,7 @@ DECLARE_LOG_FUNCTION_IMPL(SysError);
// that don't set the errno (like registry APIs in Win32)) // that don't set the errno (like registry APIs in Win32))
DECLARE_LOG_FUNCTION2_IMPL(SysError, long, lErrCode); DECLARE_LOG_FUNCTION2_IMPL(SysError, long, lErrCode);
DECLARE_LOG_FUNCTION_PUBLIC(SysError); DECLARE_LOG_FUNCTION_PUBLIC(SysError)
// debug functions do nothing in release mode // debug functions do nothing in release mode
#if wxUSE_LOG && wxUSE_LOG_DEBUG #if wxUSE_LOG && wxUSE_LOG_DEBUG
@@ -589,7 +589,7 @@ DECLARE_LOG_FUNCTION_PUBLIC(SysError);
// wxLog::GetActive()->GetTraceMask() -- it's deprecated in favour of // wxLog::GetActive()->GetTraceMask() -- it's deprecated in favour of
// string identifiers // string identifiers
DECLARE_LOG_FUNCTION2_IMPL(Trace, wxTraceMask, mask); DECLARE_LOG_FUNCTION2_IMPL(Trace, wxTraceMask, mask);
DECLARE_LOG_FUNCTION_PUBLIC(Trace); DECLARE_LOG_FUNCTION_PUBLIC(Trace)
#else //!debug || !wxUSE_LOG #else //!debug || !wxUSE_LOG
// these functions do nothing in release builds, but don't define them as // these functions do nothing in release builds, but don't define them as
// nothing as it could result in different code structure in debug and // nothing as it could result in different code structure in debug and