Applied patch [ 1399013 ] More removals of extraneous semicolons
Wlodek Szafran git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@36955 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -44,7 +44,7 @@ WX_DEFINE_LIST(wxArtProvidersList)
|
||||
// Cache class - stores already requested bitmaps
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
WX_DECLARE_EXPORTED_STRING_HASH_MAP(wxBitmap, wxArtProviderBitmapsHash);
|
||||
WX_DECLARE_EXPORTED_STRING_HASH_MAP(wxBitmap, wxArtProviderBitmapsHash)
|
||||
|
||||
class WXDLLEXPORT wxArtProviderCache
|
||||
{
|
||||
|
||||
@@ -434,7 +434,7 @@ _WX_DEFINE_BASEARRAY(double, wxBaseArrayDouble)
|
||||
#include <functional>
|
||||
#include "wx/afterstd.h"
|
||||
|
||||
_WX_DEFINE_BASEARRAY(wxString, wxBaseArrayStringBase);
|
||||
_WX_DEFINE_BASEARRAY(wxString, wxBaseArrayStringBase)
|
||||
|
||||
// some compilers (Sun CC being the only known example) distinguish between
|
||||
// extern "C" functions and the functions with C++ linkage and ptr_fun and
|
||||
|
||||
@@ -870,7 +870,7 @@ wxPluralFormsCalculator* wxPluralFormsCalculator::make(const char* s)
|
||||
// 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
|
||||
{
|
||||
|
||||
@@ -2525,7 +2525,7 @@ void wxCSConv::SetName(const wxChar *charset)
|
||||
#include "wx/hashmap.h"
|
||||
|
||||
WX_DECLARE_HASH_MAP( wxFontEncoding, wxString, wxIntegerHash, wxIntegerEqual,
|
||||
wxEncodingNameCache );
|
||||
wxEncodingNameCache )
|
||||
|
||||
static wxEncodingNameCache gs_nameCache;
|
||||
#endif
|
||||
|
||||
@@ -653,7 +653,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)
|
||||
{
|
||||
|
||||
@@ -604,7 +604,7 @@ static void Unique(wxZipMemory*& zm, size_t size)
|
||||
// Collection of weak references to entries
|
||||
|
||||
WX_DECLARE_HASH_MAP(long, wxZipEntry*, wxIntegerHash,
|
||||
wxIntegerEqual, wx__OffsetZipEntryMap);
|
||||
wxIntegerEqual, wx__OffsetZipEntryMap)
|
||||
|
||||
class wxZipWeakLinks
|
||||
{
|
||||
|
||||
@@ -96,7 +96,7 @@ static void DDELogError(const wxString& s, UINT error = DMLERR_NO_ERROR);
|
||||
// global variables
|
||||
// ----------------------------------------------------------------------------
|
||||
|
||||
WX_DECLARE_STRING_HASH_MAP( HSZ, wxAtomMap );
|
||||
WX_DECLARE_STRING_HASH_MAP( HSZ, wxAtomMap )
|
||||
|
||||
static DWORD DDEIdInst = 0L;
|
||||
static wxDDEConnection *DDECurrentlyConnecting = NULL;
|
||||
|
||||
@@ -109,7 +109,7 @@ IMPLEMENT_DYNAMIC_CLASS(wxMSWSystemMenuFontModule, wxModule)
|
||||
#endif
|
||||
|
||||
#include "wx/hashset.h"
|
||||
WX_DECLARE_HASH_SET(wxOwnerDrawn*, wxPointerHash, wxPointerEqual, OwnerDrawnSet);
|
||||
WX_DECLARE_HASH_SET(wxOwnerDrawn*, wxPointerHash, wxPointerEqual, OwnerDrawnSet)
|
||||
|
||||
#ifdef POP_WARNINGS
|
||||
#pragma warning(pop)
|
||||
|
||||
@@ -40,7 +40,7 @@
|
||||
// define a hash containing all the timers: it is indexed by timer id and
|
||||
// contains the corresponding timer
|
||||
WX_DECLARE_HASH_MAP(unsigned long, wxTimer *, wxIntegerHash, wxIntegerEqual,
|
||||
wxTimerMap);
|
||||
wxTimerMap)
|
||||
|
||||
// instead of using a global here, wrap it in a static function as otherwise it
|
||||
// could have been used before being initialized if a timer object were created
|
||||
|
||||
Reference in New Issue
Block a user