From: Ryan Norton <wxprojects@comcast.net>
Date: Mon, 27 Sep 2004 07:33:40 +0000 (+0000)
Subject: fix non-void function not returning value warning
X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/12fce8fb5e8f7708516fddb5b42a546b78365add

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
---

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 ;
 }