From 454bf1cbe07b39fa7d0fb34aa1b87cad19ddb133 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sat, 7 Dec 2002 02:30:36 +0000 Subject: [PATCH] added semicolons after HASH_MAP (backported from trunk) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/branches/WX_2_4_BRANCH@18091 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/image.h | 2 +- src/common/intl.cpp | 2 +- src/common/xpmdecod.cpp | 2 +- src/mgl/cursor.cpp | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/include/wx/image.h b/include/wx/image.h index 848f5e324a..ea439aab62 100644 --- a/include/wx/image.h +++ b/include/wx/image.h @@ -97,7 +97,7 @@ public: WX_DECLARE_EXPORTED_HASH_MAP(unsigned long, wxImageHistogramEntry, wxIntegerHash, wxIntegerEqual, - wxImageHistogram) + wxImageHistogram); //----------------------------------------------------------------------------- // wxImage diff --git a/src/common/intl.cpp b/src/common/intl.cpp index c6fa2cea1a..e78f74483a 100644 --- a/src/common/intl.cpp +++ b/src/common/intl.cpp @@ -147,7 +147,7 @@ static inline wxString ExtractNotLang(const wxString& langFull) // This is a "low-level" class and is used only by wxMsgCatalog // ---------------------------------------------------------------------------- -WX_DECLARE_EXPORTED_STRING_HASH_MAP(wxString, wxMessagesHash) +WX_DECLARE_EXPORTED_STRING_HASH_MAP(wxString, wxMessagesHash); class wxMsgCatalogFile { diff --git a/src/common/xpmdecod.cpp b/src/common/xpmdecod.cpp index 1dc78c95d2..ad80cbf883 100644 --- a/src/common/xpmdecod.cpp +++ b/src/common/xpmdecod.cpp @@ -657,7 +657,7 @@ struct wxXPMColourMapData { unsigned char R,G,B; }; -WX_DECLARE_STRING_HASH_MAP(wxXPMColourMapData, wxXPMColourMap) +WX_DECLARE_STRING_HASH_MAP(wxXPMColourMapData, wxXPMColourMap); wxImage wxXPMDecoder::ReadData(const char **xpm_data) { diff --git a/src/mgl/cursor.cpp b/src/mgl/cursor.cpp index 5420979189..0bb3bdac4a 100644 --- a/src/mgl/cursor.cpp +++ b/src/mgl/cursor.cpp @@ -57,7 +57,7 @@ wxCursorRefData::~wxCursorRefData() //----------------------------------------------------------------------------- -WX_DECLARE_HASH_MAP(int, wxCursor, wxIntegerHash, wxIntegerEqual, wxCursorsHash) +WX_DECLARE_HASH_MAP(int, wxCursor, wxIntegerHash, wxIntegerEqual, wxCursorsHash); static wxCursorsHash *gs_cursorsHash = NULL;