From e75a0614b4fec0c8763fc5ed5fcd90da9b1916ea Mon Sep 17 00:00:00 2001 From: a_matsuda Date: Sun, 27 Dec 2015 09:57:42 +0000 Subject: Typo in Tk samples * ext/tk/sample/demos-en/ttkbut.rb: happyness => happiness * ext/tk/sample/demos-jp/ttkbut.rb: happyness => happiness git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@53334 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ext/tk/sample/demos-en/ttkbut.rb | 14 +++++++------- ext/tk/sample/demos-jp/ttkbut.rb | 14 +++++++------- 2 files changed, 14 insertions(+), 14 deletions(-) (limited to 'ext/tk/sample') diff --git a/ext/tk/sample/demos-en/ttkbut.rb b/ext/tk/sample/demos-en/ttkbut.rb index f2fcbcc7ba..e308cdd23f 100644 --- a/ext/tk/sample/demos-en/ttkbut.rb +++ b/ext/tk/sample/demos-en/ttkbut.rb @@ -89,17 +89,17 @@ Tk.pack(e, sep1, c1, c2, sep2, c3, c4, :fill=>:x, :pady=>2) ## Set up the radiobutton group radios = Ttk::Labelframe.new(base_frame, :text=>'Radiobuttons') -happyness = TkVariable.new +happiness = TkVariable.new -r1 = Ttk::Radiobutton.new(radios, :variable=>happyness, +r1 = Ttk::Radiobutton.new(radios, :variable=>happiness, :text=>'Great', :value=>'great') -r2 = Ttk::Radiobutton.new(radios, :variable=>happyness, +r2 = Ttk::Radiobutton.new(radios, :variable=>happiness, :text=>'Good', :value=>'good') -r3 = Ttk::Radiobutton.new(radios, :variable=>happyness, +r3 = Ttk::Radiobutton.new(radios, :variable=>happiness, :text=>'Ok', :value=>'ok') -r4 = Ttk::Radiobutton.new(radios, :variable=>happyness, +r4 = Ttk::Radiobutton.new(radios, :variable=>happiness, :text=>'Poor', :value=>'poor') -r5 = Ttk::Radiobutton.new(radios, :variable=>happyness, +r5 = Ttk::Radiobutton.new(radios, :variable=>happiness, :text=>'Awful', :value=>'awful') Tk.pack(r1, r2, r3, r4, r5, :fill=>:x, :padx=>3, :pady=>2) @@ -115,7 +115,7 @@ Ttk::Frame.new(base_frame) {|frame| showVars(base_frame, ['enabled', enabled], ['cheese', cheese], ['tomato', tomato], ['basil', basil], ['oregano', oregano], - ['happyness', happyness]) + ['happiness', happiness]) }), Ttk::Button.new(frame, :text=>'See Code', :image=>$image['view'], :compound=>:left, diff --git a/ext/tk/sample/demos-jp/ttkbut.rb b/ext/tk/sample/demos-jp/ttkbut.rb index af9321dcd9..3a72eac377 100644 --- a/ext/tk/sample/demos-jp/ttkbut.rb +++ b/ext/tk/sample/demos-jp/ttkbut.rb @@ -95,17 +95,17 @@ Tk.pack(e, sep1, c1, c2, sep2, c3, c4, :fill=>:x, :pady=>2) ## Set up the radiobutton group radios = Ttk::Labelframe.new(base_frame, :text=>'ラジオボタン') -happyness = TkVariable.new +happiness = TkVariable.new -r1 = Ttk::Radiobutton.new(radios, :variable=>happyness, +r1 = Ttk::Radiobutton.new(radios, :variable=>happiness, :text=>'Great', :value=>'great') -r2 = Ttk::Radiobutton.new(radios, :variable=>happyness, +r2 = Ttk::Radiobutton.new(radios, :variable=>happiness, :text=>'Good', :value=>'good') -r3 = Ttk::Radiobutton.new(radios, :variable=>happyness, +r3 = Ttk::Radiobutton.new(radios, :variable=>happiness, :text=>'Ok', :value=>'ok') -r4 = Ttk::Radiobutton.new(radios, :variable=>happyness, +r4 = Ttk::Radiobutton.new(radios, :variable=>happiness, :text=>'Poor', :value=>'poor') -r5 = Ttk::Radiobutton.new(radios, :variable=>happyness, +r5 = Ttk::Radiobutton.new(radios, :variable=>happiness, :text=>'Awful', :value=>'awful') Tk.pack(r1, r2, r3, r4, r5, :fill=>:x, :padx=>3, :pady=>2) @@ -121,7 +121,7 @@ Ttk::Frame.new(base_frame) {|frame| showVars(base_frame, ['有効化', enabled], ['チーズ', cheese], ['トマト', tomato], ['バジル', basil], ['オレガノ', oregano], - ['幸福度', happyness]) + ['幸福度', happiness]) }), Ttk::Button.new(frame, :text=>'コード参照', :image=>$image['view'], :compound=>:left, -- cgit v1.2.3