summaryrefslogtreecommitdiffhomepage
path: root/lib/axlsx/drawing/hyperlink.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/axlsx/drawing/hyperlink.rb')
-rw-r--r--lib/axlsx/drawing/hyperlink.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/axlsx/drawing/hyperlink.rb b/lib/axlsx/drawing/hyperlink.rb
index acf3b8d2..682aae29 100644
--- a/lib/axlsx/drawing/hyperlink.rb
+++ b/lib/axlsx/drawing/hyperlink.rb
@@ -52,7 +52,7 @@ module Axlsx
# @see endSnd
# @param [Boolean] v The boolean value indicating the termination of playing sounds on click
# @return [Boolean]
- def end_snd=(v) Axlsx::validate_boolean(v); @end_snd = v end
+ def end_snd=(v) Axlsx.validate_boolean(v); @end_snd = v end
alias :endSnd= :end_snd=
# indicates that the link has already been clicked.
@@ -62,7 +62,7 @@ module Axlsx
# @see highlightClick
# @param [Boolean] v The value to assign
- def highlight_click=(v) Axlsx::validate_boolean(v); @highlight_click = v end
+ def highlight_click=(v) Axlsx.validate_boolean(v); @highlight_click = v end
alias :highlightClick= :highlight_click=
# From the specs: Specifies whether to add this URI to the history when navigating to it. This allows for the viewing of this presentation without the storing of history information on the viewing machine. If this attribute is omitted, then a value of 1 or true is assumed.
@@ -71,7 +71,7 @@ module Axlsx
# @see history
# param [Boolean] v The value to assing
- def history=(v) Axlsx::validate_boolean(v); @history = v end
+ def history=(v) Axlsx.validate_boolean(v); @history = v end
# From the specs: Specifies the target frame that is to be used when opening this hyperlink. When the hyperlink is activated this attribute is used to determine if a new window is launched for viewing or if an existing one can be used. If this attribute is omitted, than a new window is opened.
# @return [String]