]> git.saurik.com Git - wxWidgets.git/commitdiff
use wxNewId() to implement XRCID
authorVáclav Slavík <vslavik@fastmail.fm>
Fri, 5 Nov 2004 21:12:41 +0000 (21:12 +0000)
committerVáclav Slavík <vslavik@fastmail.fm>
Fri, 5 Nov 2004 21:12:41 +0000 (21:12 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@30303 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/xrc/xmlres.cpp

index cbefc9fc06578c9849173d25a5a1ca08dd20bfe2..90aba8c06e5ee271395ba27d64f189f188ed096d 100644 (file)
@@ -1230,8 +1230,6 @@ static XRCID_record *XRCID_Records[XRCID_TABLE_SIZE] = {NULL};
 
 static int XRCID_Lookup(const wxChar *str_id, int value_if_not_found = -2)
 {
-    static int XRCID_LastID = wxID_HIGHEST;
-
     int index = 0;
 
     for (const wxChar *c = str_id; *c != wxT('\0'); c++) index += (int)*c;
@@ -1266,7 +1264,7 @@ static int XRCID_Lookup(const wxChar *str_id, int value_if_not_found = -2)
         }
         else
         {
-            (*rec_var)->id = ++XRCID_LastID;
+            (*rec_var)->id = wxNewId();
         }
     }