From e1190518b6ec62af1479e94bc6ff1fc79fdfff28 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Tue, 22 May 2001 15:16:28 +0000 Subject: [PATCH] Corrected recursive GetToolMargins() git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@10272 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- include/wx/tbarbase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/wx/tbarbase.h b/include/wx/tbarbase.h index 81062fe304..b0f77ba9f4 100644 --- a/include/wx/tbarbase.h +++ b/include/wx/tbarbase.h @@ -335,7 +335,7 @@ public: virtual void SetToolSeparation(int separation) { m_toolSeparation = separation; } - virtual wxSize GetToolMargins() { return GetToolMargins(); } + virtual wxSize GetToolMargins() { return GetMargins(); } virtual int GetToolPacking() { return m_toolPacking; } virtual int GetToolSeparation() { return m_toolSeparation; } -- 2.45.2