WoWInterface SVN AtlasLootReverse

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk/libs/LibExtraTip
    from Rev 31 to Rev 34
    Reverse comparison

Rev 31 → Rev 34

LibExtraTip.toc
1,11 → 1,11
## Title: LibExtraTip |cff224477(lib)
## Notes: Assists in the management of additional tooltip information.
##
## Interface: 30300
## Interface: 40000
## LoadOnDemand: 0
##
## Version: 1.1
## Revision: $Id: LibExtraTip.toc 229 2009-12-08 21:17:49Z Nechckn $
## Revision: $Id: LibExtraTip.toc 280 2010-10-12 19:52:29Z Esamynn $
## Author: Norganna's AddOns
##
Load.xml
LibExtraTip.lua
25,7 → 25,7
@version 1.1
--]]
 
local MAJOR,MINOR,REVISION = "LibExtraTip", 1, "$Revision: 227 $"
local MAJOR,MINOR,REVISION = "LibExtraTip", 1, "$Revision: 275 $"
 
-- A string unique to this version to prevent frame name conflicts.
local LIBSTRING = MAJOR.."_"..MINOR.."_"..REVISION
1116,7 → 1116,7
 
local line_mt = {
__index = function(t,k)
local v = getglobal(t.name..k)
local v = _G[t.name..k]
rawset(t,k,v)
return v
end