diff --git a/demo/Joystick.py b/demo/Joystick.py index aa19a4ad..996a280e 100644 --- a/demo/Joystick.py +++ b/demo/Joystick.py @@ -2,7 +2,7 @@ #---------------------------------------------------------------------------- # Name: Joystick.py -# Purpose: Demonstrate use of wx.Joystick +# Purpose: Demonstrate use of wx.adv.Joystick # # Author: Jeff Grimmett (grimmtoo@softhome.net), adapted from original # .wdr-derived demo @@ -652,7 +652,7 @@ class AxisBar(wx.Gauge): # This is what we will overlay on the gauge. # It reflects the actual value received from the - # wx.Joystick. + # wx.adv.Joystick. txt = str(self.rawvalue) # Copy the default font, make it bold. @@ -817,7 +817,7 @@ class Axis(wx.Panel): class AxisPanel(wx.Panel): # # Contained herein is a panel that offers a graphical display - # of the levels for all axes supported by wx.Joystick. If + # of the levels for all axes supported by wx.adv.Joystick. If # your system doesn't have a particular axis, it will be # 'dummied' for transparent use. # @@ -962,13 +962,13 @@ def runTest(frame, nb, log): overview = """\ -

wx.Joystick

-This demo illustrates the use of the wx.Joystick class, which is an interface to +

wx.adv.Joystick

+This demo illustrates the use of the wx.adv.Joystick class, which is an interface to one or more joysticks attached to your system.

The data that can be retrieved from the joystick comes in four basic flavors. All of these are illustrated in the demo. In fact, this demo illustrates everything -you can get from the wx.Joystick control. +you can get from the wx.adv.Joystick control.