# HG changeset patch # User Zerotorescue # Date 1297033407 -3600 # Node ID 72de51449286388c7fdea6091355b725bbf6fd37 # Parent c04257b42b03b8968f48caf62936e72098abdc57 Oops, AceEvent shouldn?t have been removed from the Summary. diff -r c04257b42b03 -r 72de51449286 Modules/Summary.lua --- a/Modules/Summary.lua Mon Feb 07 00:03:06 2011 +0100 +++ b/Modules/Summary.lua Mon Feb 07 00:03:27 2011 +0100 @@ -1,5 +1,5 @@ local addon = select(2, ...); -- Get a reference to the main addon object -local mod = addon:NewModule("Summary", "AceTimer-3.0"); -- register a new module, Summary: resposible for building the summary window +local mod = addon:NewModule("Summary", "AceEvent-3.0", "AceTimer-3.0"); -- register a new module, Summary: resposible for building the summary window local _G = _G; -- prevent looking up of the global table local sformat, sgsub, supper, mceil, mfloor, tinsert, twipe, tsort = _G.string.format, _G.string.gsub, _G.string.upper, _G.math.ceil, _G.math.floor, _G.table.insert, _G.table.wipe, _G.table.sort;