]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/utilscmn.cpp
skip apple options
[wxWidgets.git] / src / common / utilscmn.cpp
index 5cd3d8e3c7977a08d60127148b6020d4d023b4d4..6c597072a9de36e16c5b593b59afb0170ce92771 100644 (file)
@@ -4,7 +4,6 @@
 // Author:      Julian Smart
 // Modified by:
 // Created:     29/01/98
-// RCS-ID:      $Id$
 // Copyright:   (c) 1998 Julian Smart
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
@@ -714,9 +713,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 +724,11 @@ wxWindowID wxNewId()
     return wxCurrentId++;
 }
 
-wxWindowID
+int
 wxGetCurrentId(void) { return wxCurrentId; }
 
 void
-wxRegisterId (wxWindowID id)
+wxRegisterId (int id)
 {
   if (id >= wxCurrentId)
     wxCurrentId = id + 1;