X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f6bcfd974ef26faf6f91a62cac09827e09463fd1..3f4f90c2a0c1f274d1918b320132ed0ca2922fe5:/wxPython/demo/ActiveXWrapper_IE.py?ds=sidebyside diff --git a/wxPython/demo/ActiveXWrapper_IE.py b/wxPython/demo/ActiveXWrapper_IE.py index 3cfd0ac559..216825dd29 100644 --- a/wxPython/demo/ActiveXWrapper_IE.py +++ b/wxPython/demo/ActiveXWrapper_IE.py @@ -37,7 +37,7 @@ class TestPanel(wxWindow): wxWindow.__init__(self, parent, -1)#, style=wxCLIP_CHILDREN) self.ie = None self.log = log - self.current = "http://alldunn.com/" + self.current = "http://wxPython.org/" self.frame = frame if frame: self.titleBase = frame.GetTitle() @@ -78,7 +78,7 @@ class TestPanel(wxWindow): self.location = wxComboBox(self, wxNewId(), "", style=wxCB_DROPDOWN) EVT_COMBOBOX(self, self.location.GetId(), self.OnLocationSelect) EVT_KEY_UP(self.location, self.OnLocationKey) - #EVT_CHAR(self.location, self.IgnoreReturn) + EVT_CHAR(self.location, self.IgnoreReturn) btnSizer.Add(self.location, 1, wxEXPAND|wxALL, 5) sizer.Add(btnSizer, 0, wxEXPAND)