diff options
author | Darrell Anderson <[email protected]> | 2013-05-05 01:00:20 -0500 |
---|---|---|
committer | Darrell Anderson <[email protected]> | 2013-05-05 01:00:20 -0500 |
commit | fb4b5d2a5588b69291656872f912eb022b7a03a2 (patch) | |
tree | 14904a5729905ba598f37f7273fb4a62004d3024 /qtruby | |
parent | 8aa20fb7fcfdfa8f57f1e76fb1bba346b65a1eb7 (diff) | |
download | tdebindings-fb4b5d2a5588b69291656872f912eb022b7a03a2.tar.gz tdebindings-fb4b5d2a5588b69291656872f912eb022b7a03a2.zip |
Fix inadvertent renaming and typos.
Diffstat (limited to 'qtruby')
-rw-r--r-- | qtruby/AUTHORS | 2 | ||||
-rw-r--r-- | qtruby/INSTALL | 2 | ||||
-rw-r--r-- | qtruby/rubylib/examples/ruboids/ruboids/Graphics.rb | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/qtruby/AUTHORS b/qtruby/AUTHORS index f7c0c985..3b98da28 100644 --- a/qtruby/AUTHORS +++ b/qtruby/AUTHORS @@ -43,7 +43,7 @@ QtRuby is a ruby version of the PerlQt/Smoke project, written by: Germain Garand David Faure -Etquipment +Equipment 800 Mhz iBook with Yellow Dog 3.0, Macally Micro 3 button mouse Books diff --git a/qtruby/INSTALL b/qtruby/INSTALL index 570c0045..f2b39996 100644 --- a/qtruby/INSTALL +++ b/qtruby/INSTALL @@ -119,7 +119,7 @@ Info.plist is <key>CFBundleExecutable</key> <string>Shoot</string> <key>CFBundleIdentifier</key> - <string>jp.co.ryutaro.qttquit</string> + <string>jp.co.ryutaro.qtquit</string> <key>CFBundlePackageType</key> <string>APPL</string> <key>CFBundleSignature</key> diff --git a/qtruby/rubylib/examples/ruboids/ruboids/Graphics.rb b/qtruby/rubylib/examples/ruboids/ruboids/Graphics.rb index ba50f364..931167b0 100644 --- a/qtruby/rubylib/examples/ruboids/ruboids/Graphics.rb +++ b/qtruby/rubylib/examples/ruboids/ruboids/Graphics.rb @@ -32,7 +32,7 @@ class Graphics # Defines counter-clockwise points used in OpenGL TRIANGLE_STRIP to # create a circle on the X/Z plane. Don't include center point here; # It is added when outputting the circle. - STQUARE = [ + SQUARE = [ XPLUS, ZMINUS, XMINUS, ZPLUS, XPLUS ] @@ -225,7 +225,7 @@ class Graphics def Graphics.circle(iterations = DEFAULT_SPHERE_ITERATIONS, counterClockwise = true) if @@circles[iterations].nil? - @@circles[iterations] = buildCircle(iterations, STQUARE) + @@circles[iterations] = buildCircle(iterations, SQUARE) end circle = @@circles[iterations] |