Thread Tools Display Modes
10-16-10, 05:46 PM   #1
Dukatt
A Murloc Raider
Join Date: Nov 2007
Posts: 5
A few errors

First one

Interface\AddOns\nUI\Integration\nUI_Minimap.lua:465: attempt to compare number with nil
Time: 10/16/10 17:40:17
Count: 5
Stack: Interface\AddOns\nUI\Integration\nUI_Minimap.lua:465: in function <Interface\AddOns\nUI\Integration\nUI_Minimap.lua:464>

Locals: (*temporary) = nil
(*temporary) = nil
(*temporary) = "attempt to compare number with nil"
Second one

Interface\AddOns\nUI\Bars\nUI_ButtonBar.lua:284: Usage: SaveBindings(1|2)
Time: 10/16/10 17:55:15
Count: 1
Stack: [C]: in function `SaveBindings'
Interface\AddOns\nUI\Bars\nUI_ButtonBar.lua:284: in function <Interface\AddOns\nUI\Bars\nUI_ButtonBar.lua:167>

Locals: (*temporary) = 543908713
And the third...big one.

Interface\AddOns\nUI\Units\nUI_UnitFrame.lua:346: attempt to index global 'this' (a nil value)
Time: 10/16/10 17:56:39
Count: 3
Stack: Interface\AddOns\nUI\Units\nUI_UnitFrame.lua:346: in function `handler'
Interface\FrameXML\SecureTemplates.lua:540: in function `SecureActionButton_OnClick'
Interface\FrameXML\SecureTemplates.lua:580: in function <Interface\FrameXML\SecureTemplates.lua:572>

Locals: popup = nUI_SoloUnit_Pet_Popup {
0 = <userdata>
onUnitPopupUpdate = <function> defined @Interface\AddOns\nUI\Units\nUI_Unit.lua:353
initialize = <function> defined @Interface\AddOns\nUI\Units\nUI_Unit.lua:353
displayMode = "MENU"
class = nUI_SoloUnit_Pet {
}
texture = nUI_SoloUnit_Pet_PopupTexture {
}
}
anchor = nUI_SoloUnit_Pet {
0 = <userdata>
applyFrameFader = <function> defined @Interface\AddOns\nUI\Units\nUI_Unit.lua:550
parent = nUI_UnitPanel_Player {
}
setUnitID = <function> defined @Interface\AddOns\nUI\Units\nUI_Unit.lua:761
newUnitInfo = <function> defined @Interface\AddOns\nUI\Units\nUI_Unit.lua:451
applySkin = <function> defined @Interface\AddOns\nUI\Units\nUI_Unit.lua:711
configText = <function> defined @Interface\AddOns\nUI\Units\nUI_UnitFrame.lua:384
skin = <table> {
}
anchor = <table> {
}
background = nUI_SoloUnit_Pet_Background {
}
applyOptions = <function> defined @Interface\AddOns\nUI\Units\nUI_Unit.lua:620
options = <table> {
}
skinName = "nUI_SoloUnit_PetSkin"
Faders = <table> {
}
popup = nUI_SoloUnit_Pet_Popup {
}
cachedSetUnitID = <function> defined @Interface\AddOns\nUI\Units\nUI_UnitFrame.lua:633
height = 115.968
Labels = <table> {
}
changeScale = <function> defined @Interface\AddOns\nUI\Units\nUI_Unit.lua:533
applyAnchor = <function> defined @Interface\AddOns\nUI\Units\nUI_Unit.lua:579
active = true
scale = 1
unit = "pet"
clickable = false
anchor_pt = "TOP"
setVisibility = <function> defined @Interface\AddOns\nUI\Units\nUI_Unit.lua:746
click_cast = true
alpah = 1
xOfs = 0
relative_pt = "BOTTOM"
width = 168
yOfs = 0
unit_info = <table> {
}
relative_to = "nUI_SoloUnit_Player_Feedback"
applyScale = <function> defined @Interface\AddOns\nUI\Units\nUI_Unit.lua:499
Elements = <table> {
}
refreshSkin = <function> defined @Interface\AddOns\nUI\Units\nUI_Unit.lua:734
setEnabled = <function> defined @Interface\AddOns\nUI\Units\nUI_Unit.lua:466
enabled = true
}
(*temporary) = nil
(*temporary) = "pet"
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = nil
(*temporary) = "attempt to index global 'this' (a nil value)"
frame = nUI_SoloUnit_Pet_Feedback {
0 = <userdata>
relative_to = "$parent"
parent = nUI_SoloUnit_Pet {
}
setUnitID = <function> defined @Interface\AddOns\nUI\Units\nUI_UnitFrame.lua:633
newUnitInfo = <function> defined @Interface\AddOns\nUI\Units\nUI_UnitFeedback.lua:898
vInset = 0
Super = <table> {
}
configText = <function> defined @Interface\AddOns\nUI\Units\nUI_UnitFrame.lua:384
anchor = <table> {
}
background = nUI_SoloUnit_Pet_Feedback_Background {
}
enabled = true
options = <table> {
}
text = nUI_SoloUnit_Pet_FeedbackText {
}
height = 57.984
Labels = <table> {
}
hScale = 0.4
applyAnchor = <function> defined @Interface\AddOns\nUI\Units\nUI_UnitFrame.lua:539
active = true
scale = 1
unit = "pet"
clickable = true
texture = nUI_SoloUnit_Pet_FeedbackTexture {
}
unit_info = <table> {
}
click_cast = true
yOfs = 0
xOfs = 0
relative_pt = "TOPLEFT"
width = 168
highlight = nUI_SoloUnit_Pet_FeedbackHighlight {
}
hInset = 0
menu = <function> defined @Interface\AddOns\nUI\Units\nUI_UnitFrame.lua:337
applyScale = <function> defined @Interface\AddOns\nUI\Units\nUI_UnitFeedback.lua:945
anchor_pt = "TOPLEFT"
vScale = 0.384
setEnabled = <function> defined @Interface\AddOns\nUI\Units\nUI_UnitFeedback.lua:918
applyOptions = <function> defined @Interface\AddOns\nUI\Units\nUI_UnitFeedback.lua:984
}
UnitName = <function> defined =[C]:-1
ToggleDropDownMenu = <
Hope this is what you needed for bug reports.
 
10-16-10, 06:33 PM   #2
Brillynt
A Black Drake
 
Brillynt's Avatar
AddOn Author - Click to view addons
Join Date: Sep 2008
Posts: 77
Originally Posted by Dukatt View Post
First one
This can be fixed by changing nUI/Interfaces/nUI_Minimap.lua line 464
Minimap:SetScript( "OnMouseWheel", function()
to
Minimap:SetScript( "OnMouseWheel", function(self, arg1)

Originally Posted by Dukatt View Post
Second one
I do not see a issue in the code but will have to dig further.

Originally Posted by Dukatt View Post

And the third...big one.
This is fixed in another thread.
http://www.wowinterface.com/forums/s...8&postcount=12

Originally Posted by Dukatt View Post

Hope this is what you needed for bug reports.

Hope this helps
 
10-17-10, 07:30 AM   #3
spiel2001
nUI's Author
 
spiel2001's Avatar
AddOn Author - Click to view addons
Join Date: Jun 2008
Posts: 7,724
Okay... the first one I've fixed and will be in the 5.07.05 (Development) update. The second one I can't see the problem with, either... so I'm looking into it. The third one is also fixed in 5.07.05 (Development) to be released later today I hope.
__________________

What people don't get is that I am, ultimately, an artist at heart.
My brush has two colors, 1 and 0, and my canvas is made of silicon.



Official nUI Web Site: http://www.nUIaddon.com
Official nUI Support Forum: http://forums.nUIaddon.com
My day job: http://www.presidio.com/
 
10-18-10, 09:23 PM   #4
Dukatt
A Murloc Raider
Join Date: Nov 2007
Posts: 5
Thx for the responses guys
 
 

WoWInterface » Featured Projects » nUI, MozzFullWorldMap and PartySpotter » Support » nUI: Bug Reports » A few errors

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off