Slightly reformat EnableProofCheck() declarations
Keep the entire wxTextProofOptions argument on the same line. Remove unnecessary WXUNUSED() in the declarations of the function in wxMSW/wxGTK headers. No real changes.
This commit is contained in:
@@ -799,10 +799,13 @@ public:
|
||||
|
||||
#if wxUSE_SPELLCHECK
|
||||
// Use native spelling and grammar checking functions.
|
||||
virtual bool EnableProofCheck(bool WXUNUSED(enable) = true,
|
||||
const wxTextProofOptions& WXUNUSED(options) =
|
||||
wxTextProofOptions())
|
||||
{ return false; }
|
||||
virtual bool EnableProofCheck(
|
||||
bool WXUNUSED(enable) = true,
|
||||
const wxTextProofOptions& WXUNUSED(options) = wxTextProofOptions()
|
||||
)
|
||||
{
|
||||
return false;
|
||||
}
|
||||
virtual bool IsProofCheckEnabled() const { return false; }
|
||||
#endif // wxUSE_SPELLCHECK
|
||||
|
||||
|
Reference in New Issue
Block a user