]> git.saurik.com Git - wxWidgets.git/blobdiff - src/msw/wince/choicece.cpp
Set missing Language: headers in PO files.
[wxWidgets.git] / src / msw / wince / choicece.cpp
index 33d80aa13cc87baf09edb9857cd0be5e78b7b480..04ea4850a2dd904b85a490589f77b47349382f8a 100644 (file)
@@ -4,7 +4,6 @@
 // Author:      Wlodzimierz ABX Skiba
 // Modified by:
 // Created:     29.07.2004
-// RCS-ID:      $Id$
 // Copyright:   (c) Wlodzimierz Skiba
 // Licence:     wxWindows licence
 ///////////////////////////////////////////////////////////////////////////////
@@ -246,7 +245,7 @@ bool wxChoice::CreateAndInit(wxWindow *parent,
     (void)::SendMessage(GetHwnd(), UDM_SETBUDDY, (WPARAM)GetBuddyHwnd(), 0);
 
     // do it after finishing with m_hwndBuddy creation to avoid generating
-    // initial wxEVT_COMMAND_TEXT_UPDATED message
+    // initial wxEVT_TEXT message
     ms_allChoiceSpins.Add(this);
 
     // initialize the controls contents
@@ -303,7 +302,7 @@ bool wxChoice::MSWCommand(WXUINT param, WXWORD WXUNUSED(id))
     int n = GetSelection();
     if (n > -1)
     {
-        wxCommandEvent event(wxEVT_COMMAND_CHOICE_SELECTED, m_windowId);
+        wxCommandEvent event(wxEVT_CHOICE, m_windowId);
         event.SetInt(n);
         event.SetEventObject(this);
         event.SetString(GetStringSelection());