Renamed fill_{,pos_}{rel,abs} to set_fill_{,pos}{rel,abs} for consistency.
authorTilman Sauerbeck <tilman@code-monkey.de>
Fri, 28 Jul 2006 17:30:51 +0000 (17:30 +0000)
committerTilman Sauerbeck <tilman@code-monkey.de>
Fri, 28 Jul 2006 17:30:51 +0000 (17:30 +0000)
ChangeLog
lib/redact/part.rb

index 066a732e052c2d157f276a4910be5e8a9124c46c..0f4171ec6f3b709450f39f8a2ed74bf8ee197dbf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,11 @@
 --
-$Id: ChangeLog 76 2006-05-13 11:58:15Z tilman $
+$Id: ChangeLog 77 2006-07-28 17:30:51Z tilman $
 ++
 
+2006-07-28 Tilman Sauerbeck (tilman at code-monkey de)
+        * lib/redact/part.rb: Renamed fill_{,pos_}{rel,abs} to
+          set_fill_{,pos}{rel,abs} for consistency
+
 2006-05-13 Tilman Sauerbeck (tilman at code-monkey de)
         * README, Rakefile: Updated project homepage and documentation
           locations
index 3446de26c7d41b88007521d1fae4bfbd10f7d748..66bc43918ae300ebf3f5794186fce86b4c3f9f83 100644 (file)
@@ -1,5 +1,5 @@
 #--
-# $Id: part.rb 70 2005-09-21 15:56:55Z tilman $
+# $Id: part.rb 77 2006-07-28 17:30:51Z tilman $
 #
 # Copyright (c) 2005 Tilman Sauerbeck (tilman at code-monkey de)
 #
@@ -500,19 +500,19 @@ module Redact
                        @fill_smooth = (v == true)
                end
 
-               def fill_pos_rel=(x, y)
+               def set_fill_pos_rel(x, y)
                        @fill_pos_rel = [x.to_f, y.to_f]
                end
 
-               def fill_pos_abs=(x, y)
+               def set_fill_pos_abs(x, y)
                        @fill_pos_abs = [x.to_i, y.to_i]
                end
 
-               def fill_rel=(x, y)
+               def set_fill_rel(x, y)
                        @fill_rel = [x.to_f, y.to_f]
                end
 
-               def fill_abs=(x, y)
+               def set_fill_abs(x, y)
                        @fill_abs = [x.to_i, y.to_i]
                end