]> git.saurik.com Git - wxWidgets.git/blobdiff - src/stc/stc.cpp
bump subrelease number
[wxWidgets.git] / src / stc / stc.cpp
index 108dc0288c320e2a4967c8a89019c731602b6810..bc54bf966ca796c45430a192f3600b658e851c75 100644 (file)
@@ -786,13 +786,13 @@ void wxStyledTextCtrl::SetCaretLineVisible(bool show) {
 }
 
 // Get the colour of the background of the line containing the caret.
-wxColour wxStyledTextCtrl::GetCaretLineBack() {
+wxColour wxStyledTextCtrl::GetCaretLineBackground() {
     long c = SendMsg(2097, 0, 0);
     return wxColourFromLong(c);
 }
 
 // Set the colour of the background of the line containing the caret.
-void wxStyledTextCtrl::SetCaretLineBack(const wxColour& back) {
+void wxStyledTextCtrl::SetCaretLineBackground(const wxColour& back) {
     SendMsg(2098, wxColourAsLong(back), 0);
 }