Deprecate wxTipProvider::PreprocessTip().

It is completely useless, and there is no reason to keep it.

Closes #15916.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@75744 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-01-30 19:40:29 +00:00
parent aeadb41900
commit 98da482d7a
3 changed files with 8 additions and 24 deletions

View File

@@ -50,18 +50,6 @@ public:
This function is pure virtual, it should be implemented in the derived classes.
*/
virtual wxString GetTip() = 0;
/**
Returns a modified tip.
This function will be called immediately after read, and before being check
whether it is a comment, an empty string or a string to translate.
You can optionally override this in your custom user-derived class
to optionally to modify the tip as soon as it is read. You can return any
modification to the string. If you return wxEmptyString, then this tip is
skipped, and the next one is read.
*/
virtual wxString PreprocessTip(const wxString& tip);
};