Skip to content

Commit 52d0b5b

Browse files
committed
Fixes/changes for retail 11.0.0 (including new supporting MoLib v14)
1 parent 7a1aae2 commit 52d0b5b

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

AuctionDB/.luacheckrc

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
globals = {
22
"AuctionDBSaved",
33
"CreateFrame",
4-
"InterfaceOptions_AddCategory",
5-
"InterfaceOptionsFrame",
6-
"InterfaceOptionsFrame_OpenToCategory",
74
"SlashCmdList",
85
"SLASH_AuctionDB_Slash_Command1",
96
"geterrorhandler",

AuctionDB/AuctionDB-Mainline.toc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Interface: 100207
1+
## Interface: 110000
22
## Title: Auction House DataBase (AHDB)
33
## Notes: Auction House DataBase, records DB history and offline queries, for classic and more (|cFF99E5FF/ahdb|r)
44
## Notes: Not yet supported for Shadowlands AH changes, sorry.

AuctionDB/AuctionDB.lua

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -482,9 +482,7 @@ function ADB.Slash(arg) -- can't be a : because used directly as slash command
482482
ADB:ItemInfoScan()
483483
elseif cmd == "c" then
484484
-- Show config panel
485-
-- InterfaceOptionsList_DisplayPanel(ADB.optionsPanel)
486-
InterfaceOptionsFrame:Show() -- onshow will clear the category if not already displayed
487-
InterfaceOptionsFrame_OpenToCategory(ADB.optionsPanel) -- gets our name selected
485+
ADB:ShowConfigPanel(ADB.optionsPanel)
488486
elseif ADB:StartsWith(arg, "debug") then
489487
-- debug
490488
if rest == "on" then
@@ -674,7 +672,7 @@ function ADB:CreateOptionsPanel()
674672
end
675673
end
676674
-- Add the panel to the Interface Options
677-
InterfaceOptions_AddCategory(ADB.optionsPanel)
675+
ADB:ConfigPanel(ADB.optionsPanel)
678676
end
679677

680678
-- bindings / localization

0 commit comments

Comments
 (0)