Unwanted mass rename of tinsert to table.insert

This commit is contained in:
Tercio Jose
2023-10-11 20:32:32 -03:00
parent 115ccf7d49
commit 0cca378d2b
32 changed files with 180 additions and 180 deletions
+2 -2
View File
@@ -1243,7 +1243,7 @@
if (not _G.DetailsUpdateDialog) then
local updatewindow_frame = CreateFrame("frame", "DetailsUpdateDialog", UIParent, "ButtonFrameTemplate")
updatewindow_frame:SetFrameStrata("LOW")
tinsert(UISpecialFrames, "DetailsUpdateDialog")
table.insert(UISpecialFrames, "DetailsUpdateDialog")
updatewindow_frame:SetPoint("center", UIParent, "center")
updatewindow_frame:SetSize(512, 200)
--updatewindow_frame.portrait:SetTexture([[Interface\CHARACTERFRAME\TEMPORARYPORTRAIT-FEMALE-GNOME]])
@@ -1623,7 +1623,7 @@ function Details.ShowCopyValueFrame(textToShow)
frame:SetSize(160, 20)
frame:SetPoint("center", UIParent, "center", 0, 0)
DetailsFramework:ApplyStandardBackdrop(frame)
tinsert(UISpecialFrames, "DetailsCopyValueFrame")
table.insert(UISpecialFrames, "DetailsCopyValueFrame")
frame.editBox = CreateFrame("editbox", nil, frame)
frame.editBox:SetPoint("topleft", frame, "topleft")