WoWInterface SVN Portfolio

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /trunk/Portfolio/Libs
    from Rev 4 to Rev 17
    Reverse comparison

Rev 4 → Rev 17

InterfaceOptionAboutPanel.lua
1,5 → 1,8
--[[-- InterfaceOptionAboutPanel: Forked from Tekkub's tekKonfig-AboutPanel v4 with permission
 
-- Forked from Tekkub's tekKonfig-AboutPanel v4 with permission
@usage local lib = LibStub("InterfaceOptionAboutPanel")
--]]--
 
local lib, oldminor = LibStub:NewLibrary("InterfaceOptionAboutPanel", 1)
if not lib then return end
 
10,6 → 13,11
end
-- Localizations here
 
--[[-- Create a new About Panel.
 
@param parent (Optional) Name of the Option Panel to list this About tab under
@param addonname Name of the addon to use toc data from
--]]--
function lib.new(parent, addonname)
local frame = CreateFrame("Frame", nil, UIParent)
frame.name, frame.parent, frame.addonname = parent and "About" or addonname, parent, addonname
55,7 → 63,6
self:HighlightText()
end)
 
 
function lib.OpenEditbox(self)
editbox:SetText(self.val)
editbox:SetParent(self)