From a90dd434f7286b9f134adc416344a97946f9c120 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 23 Aug 2021 00:21:21 +0200 Subject: [PATCH] Remove misleading word from the listctrl sample log message It was surprising to see "right double click" for a right click. --- samples/listctrl/listtest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/listctrl/listtest.cpp b/samples/listctrl/listtest.cpp index f2615a01b9..edae453f8b 100644 --- a/samples/listctrl/listtest.cpp +++ b/samples/listctrl/listtest.cpp @@ -1465,7 +1465,7 @@ void MyListCtrl::OnRightClick(wxMouseEvent& event) default: where = "not clear exactly where on"; break; } - wxLogMessage("Right double click %s item %ld, subitem %ld", + wxLogMessage("Right click %s item %ld, subitem %ld", where, item, subitem); }