]> git.saurik.com Git - wxWidgets.git/commitdiff
Removed new function
authorJulian Smart <julian@anthemion.co.uk>
Thu, 16 Nov 2006 07:33:19 +0000 (07:33 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Thu, 16 Nov 2006 07:33:19 +0000 (07:33 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@43437 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

include/wx/richtext/richtextctrl.h
src/richtext/richtextctrl.cpp

index 47f36c38d257f84bd63d09fbec869e2f0722e4fe..6df1e6efde4f33523c564b3c730d495c3a2bd762 100644 (file)
@@ -184,10 +184,11 @@ public:
     virtual bool GetStyle(long position, wxTextAttrEx& style);
     virtual bool GetStyle(long position, wxRichTextAttr& style);
 
+/*
     // get the common set of styles for the range
     bool GetStyleForRange(const wxRichTextRange& range, wxRichTextAttr& style);
     bool GetStyleForRange(const wxRichTextRange& range, wxTextAttrEx& style);
-
+*/
     // extended style setting operation with flags including:
     // wxRICHTEXT_SETSTYLE_WITH_UNDO, wxRICHTEXT_SETSTYLE_OPTIMIZE, wxRICHTEXT_SETSTYLE_PARAGRAPHS_ONLY, wxRICHTEXT_SETSTYLE_CHARACTERS_ONLY
     // see richtextbuffer.h for more details.
index 2adf35ae03c5f72eae1e7ab339e569896c23003b..11b54b3fda9250672070a9d2375bb3ec1b9c5cee 100644 (file)
@@ -2525,6 +2525,7 @@ bool wxRichTextCtrl::GetStyle(long position, wxRichTextAttr& style)
     return GetBuffer().GetStyle(position, style);
 }
 
+/*
 // get the common set of styles for the range
 bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange& range, wxRichTextAttr& style)
 {
@@ -2542,6 +2543,7 @@ bool wxRichTextCtrl::GetStyleForRange(const wxRichTextRange& range, wxTextAttrEx
 {
     return GetBuffer().GetStyleForRange(range.ToInternal(), style);
 }
+*/
 
 /// Get the content (uncombined) attributes for this position.