From 522c3404810e290ecd56ea204742d1a5c5613e33 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 11 Jun 2009 15:57:29 +0000 Subject: [PATCH] GetTextExtent() is not virtual any more (since r60984) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60999 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- interface/wx/window.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/interface/wx/window.h b/interface/wx/window.h index 4835c550b8..962d193a0c 100644 --- a/interface/wx/window.h +++ b/interface/wx/window.h @@ -1489,10 +1489,11 @@ public: @param font Font to use instead of the current window font (optional). */ - virtual void GetTextExtent(const wxString& string, int* w, int* h, - int* descent = NULL, - int* externalLeading = NULL, - const wxFont* font = NULL) const; + void GetTextExtent(const wxString& string, + int* w, int* h, + int* descent = NULL, + int* externalLeading = NULL, + const wxFont* font = NULL) const; /** Gets the dimensions of the string as it would be drawn on the -- 2.50.0