summary refs log tree commit diff stats
path: root/code/action.rb
diff options
context:
space:
mode:
Diffstat (limited to 'code/action.rb')
-rw-r--r--code/action.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/code/action.rb b/code/action.rb
index 7a0a9ac7..48fd6f42 100644
--- a/code/action.rb
+++ b/code/action.rb
@@ -12,14 +12,14 @@ module Action
 	def copy(files, path)
 		files = [files] unless files.is_a? Array
 		unless files.empty?
-			CopyBar2.new(files, path)
+			CopyBar.new(files, path)
 		end
 	end
 
 	def move(files, path)
 		files = [files] unless files.is_a? Array
 		unless files.empty?
-			MoveBar2.new(files, path)
+			MoveBar.new(files, path)
 		end
 	end