]> git.saurik.com Git - wxWidgets.git/commitdiff
Use int instead of wxWindowID in wxNewId() and friends.
authorVáclav Slavík <vslavik@fastmail.fm>
Thu, 11 Jul 2013 07:53:35 +0000 (07:53 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Thu, 11 Jul 2013 07:53:35 +0000 (07:53 +0000)
The functions are available in wxBase builds too, but wx/windowid.h
isn't. Rather than always including that header, just use int, for which
wxWindowID is a typedef. This keeps the functions available in wxBase
for compatibility and is consistent with how IDs are handled in other
parts of wxBase, particularly wxEvent.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@74486 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/utils.h
interface/wx/utils.h
src/common/utilscmn.cpp

index edbd7de380d091b0196d506a5bfd1035881663d1..c07fa4199eb0fecd103df8662a6edf57a7e9e077 100644 (file)
@@ -273,13 +273,13 @@ inline bool wxPlatformIs(int platform) { return wxPlatform::Is(platform); }
 // ----------------------------------------------------------------------------
 
 // Ensure subsequent IDs don't clash with this one
-WXDLLIMPEXP_BASE void wxRegisterId(wxWindowID id);
+WXDLLIMPEXP_BASE void wxRegisterId(int id);
 
 // Return the current ID
-WXDLLIMPEXP_BASE wxWindowID wxGetCurrentId();
+WXDLLIMPEXP_BASE int wxGetCurrentId();
 
 // Generate a unique ID
-WXDLLIMPEXP_BASE wxWindowID wxNewId();
+WXDLLIMPEXP_BASE int wxNewId();
 
 // ----------------------------------------------------------------------------
 // Various conversions
index ad37f8030cde5a5b5d9f5288fefc21691459d3e0..4a8a54ef65f2bfb4097f7e53580e798ff50ff0fc 100644 (file)
@@ -459,7 +459,7 @@ int wxFindMenuItemId(wxFrame* frame, const wxString& menuString,
 
     @header{wx/utils.h}
 */
-wxWindowID wxNewId();
+int wxNewId();
 
 /**
     Ensures that Ids subsequently generated by wxNewId() do not clash with the
@@ -467,7 +467,7 @@ wxWindowID wxNewId();
 
     @header{wx/utils.h}
 */
-void wxRegisterId(wxWindowID id);
+void wxRegisterId(int id);
 
 /**
     Opens the @a document in the application associated with the files of this
index 5cd3d8e3c7977a08d60127148b6020d4d023b4d4..3d029034e39db14f242c3d460b0e2e309fa935ea 100644 (file)
@@ -714,9 +714,9 @@ long wxExecute(const wxString& command,
 // ----------------------------------------------------------------------------
 
 // Id generation
-static wxWindowID wxCurrentId = 100;
+static int wxCurrentId = 100;
 
-wxWindowID wxNewId()
+int wxNewId()
 {
     // skip the part of IDs space that contains hard-coded values:
     if (wxCurrentId == wxID_LOWEST)
@@ -725,11 +725,11 @@ wxWindowID wxNewId()
     return wxCurrentId++;
 }
 
-wxWindowID
+int
 wxGetCurrentId(void) { return wxCurrentId; }
 
 void
-wxRegisterId (wxWindowID id)
+wxRegisterId (int id)
 {
   if (id >= wxCurrentId)
     wxCurrentId = id + 1;