From 12fce8fb5e8f7708516fddb5b42a546b78365add Mon Sep 17 00:00:00 2001 From: Ryan Norton Date: Mon, 27 Sep 2004 07:33:40 +0000 Subject: [PATCH] fix non-void function not returning value warning git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29434 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/mac/carbon/combobox.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mac/carbon/combobox.cpp b/src/mac/carbon/combobox.cpp index 7aab1dc666..196c2e1d3c 100644 --- a/src/mac/carbon/combobox.cpp +++ b/src/mac/carbon/combobox.cpp @@ -588,7 +588,7 @@ wxInt32 wxComboBox::MacControlHit(WXEVENTHANDLERREF WXUNUSED(handler) , WXEVENTR event.SetInt(GetSelection()); event.SetEventObject(this); event.SetString(GetStringSelection()); - ProcessCommand(event); - return noErr ; */ + ProcessCommand(event);*/ + return noErr ; } -- 2.45.2