From 18956125d38d5ccc5a6cd30f4bf8d6163f32ee39 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 18 Jun 2019 00:55:16 +0200 Subject: [PATCH] Fix copy-and-pasto in wxGrid::HideColLabels() documentation The old sentence didn't make sense for this function. --- interface/wx/grid.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/interface/wx/grid.h b/interface/wx/grid.h index 27690c953a..ad840f7f6b 100644 --- a/interface/wx/grid.h +++ b/interface/wx/grid.h @@ -2511,7 +2511,9 @@ public: /** Hides the column labels by calling SetColLabelSize() with a size of 0. - Show labels again by calling that method with a width greater than 0. + + The labels can be shown again by calling SetColLabelSize() with a + height greater than 0. */ void HideColLabels();