From e79d4945d7456b44868893db291234775fd2dd3f Mon Sep 17 00:00:00 2001
From: Vadim Zeitlin <vadim@wxwidgets.org>
Date: Fri, 31 Oct 2008 23:07:49 +0000
Subject: [PATCH] fix another MSVC /Wp64 warning about size_t to int conversion
 (closes #10140)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@56623 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
---
 include/wx/choicebk.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/wx/choicebk.h b/include/wx/choicebk.h
index 32092c5631..d85f1f5c4c 100644
--- a/include/wx/choicebk.h
+++ b/include/wx/choicebk.h
@@ -93,7 +93,7 @@ protected:
 
     void UpdateSelectedPage(size_t newsel)
     {
-        m_selection = newsel;
+        m_selection = static_cast<int>(newsel);
         GetChoiceCtrl()->Select(newsel);
     }
 
-- 
2.47.2