From 47e2f8816666a84e2b0073d9ca5f9cf4292de466 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 4 Aug 2011 13:19:57 +0000 Subject: [PATCH] Avoid unwanted line break in wxDataViewListModel::GetCount() docs. Using "i.e." in the brief Doxygen comment makes it end it after the second period and results in truncated brief description and an unwanted line break in the full description. Just avoid using periods for now inside the brief description. Maybe a better solution could be found in the future. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@68519 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/dataview.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/wx/dataview.h b/interface/wx/dataview.h index 8779ef96f9..f4d4fcd8f1 100644 --- a/interface/wx/dataview.h +++ b/interface/wx/dataview.h @@ -421,7 +421,7 @@ public: unsigned int col) const; /** - Returns the number of items (i.e. rows) in the list. + Returns the number of items (or rows) in the list. */ unsigned int GetCount() const;