No real changes, just fix misspellings in comments in wxGTK code.

Also remove a couple of wrong $Id$ expansions.

Closes #14203.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@71198 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2012-04-15 23:18:01 +00:00
parent 66180c31f6
commit eccace042d
5 changed files with 6 additions and 6 deletions

View File

@@ -787,7 +787,7 @@ bool wxTextCtrl::Create( wxWindow *parent,
GtkTextIter start, end;
// We create our wxUrl tag here for slight efficiency gain - we
// don't have to check for the tag existance in callbacks,
// don't have to check for the tag existence in callbacks,
// hereby it's guaranteed to exist.
gtk_text_buffer_create_tag(m_buffer, "wxUrl",
"foreground", "blue",
@@ -1953,7 +1953,7 @@ void wxTextCtrl::OnUrlMouseEvent(wxMouseEvent& event)
gtk_text_iter_forward_to_tag_toggle(&end, tag);
// Native context menu is probably not desired on an URL.
// Consider making this dependant on ProcessEvent(wxTextUrlEvent) return value
// Consider making this dependent on ProcessEvent(wxTextUrlEvent) return value
if(event.GetEventType() == wxEVT_RIGHT_DOWN)
event.Skip(false);