diff options
author | Timothy Pearson <[email protected]> | 2012-01-25 16:33:42 -0600 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-01-25 16:33:42 -0600 |
commit | 0b1406f62f219de60182f60836966921a73b824d (patch) | |
tree | 15312a075cb903070fc15cb93f8a1ed010b5a0b3 /korundum | |
parent | 0f84641849e39d12dca6eeb51b09733569c0741a (diff) | |
download | tdebindings-0b1406f62f219de60182f60836966921a73b824d.tar.gz tdebindings-0b1406f62f219de60182f60836966921a73b824d.zip |
Fix linear alphabet string errors
Diffstat (limited to 'korundum')
-rw-r--r-- | korundum/rubylib/examples/uimodules/uiwidgets.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/korundum/rubylib/examples/uimodules/uiwidgets.rb b/korundum/rubylib/examples/uimodules/uiwidgets.rb index 5517e416..e06b06be 100644 --- a/korundum/rubylib/examples/uimodules/uiwidgets.rb +++ b/korundum/rubylib/examples/uimodules/uiwidgets.rb @@ -131,7 +131,7 @@ class Page1 < TQt::Object end def restrict(which) - r = {0 => "0123456789", 1 => "ABCDEFGHIJKLMNOPTQRSTUVWXYZ", 2 => "abcdefghijklmnopqrstuvwxyz"} + r = {0 => "0123456789", 1 => "ABCDEFGHIJKLMNOPQRSTUVWXYZ", 2 => "abcdefghijklmnopqrstuvwxyz"} @restrictlineedit.setValidChars(r[which]) @validLbl.setText("Valid: " + @restrictlineedit.validChars()) end |