From a81a4db388b094214e29ed1cbf519ea40c84128a Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 15 Apr 2007 16:43:37 +0000 Subject: [PATCH] removed unnecessary return in a void function git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@45482 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/vscroll.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/vscroll.h b/include/wx/vscroll.h index f5b0a2fc5b..e138586233 100644 --- a/include/wx/vscroll.h +++ b/include/wx/vscroll.h @@ -351,7 +351,7 @@ protected: // forward calls to OnGetRowsHeightHint() virtual void OnGetUnitsSizeHint(size_t unitMin, size_t unitMax) const - { return OnGetRowsHeightHint(unitMin, unitMax); } + { OnGetRowsHeightHint(unitMin, unitMax); } // again, if not overridden, it will fall back on default method virtual wxCoord EstimateTotalHeight() const -- 2.45.2