Fix file endings

This commit is contained in:
Kenny Shields 2014-11-09 11:24:10 -10:00
parent 2a19aa4ea2
commit b04bac9134
41 changed files with 40 additions and 41 deletions

View File

@ -1 +1 @@
return {}
return {}

View File

@ -176,4 +176,4 @@ function loveframes.templates.ApplyToObject(object)
end
end
end
end

View File

@ -369,4 +369,4 @@ function loveframes.util.IsCtrlDown()
love.keyboard.isDown("lgui") or love.keyboard.isDown("rgui")
end
return love.keyboard.isDown("lctrl") or love.keyboard.isDown("rctrl")
end
end

View File

@ -1272,4 +1272,4 @@ function newobject:GetState()
return self.state
end
end

View File

@ -292,4 +292,4 @@ function newobject:GetToggleable()
return self.toggleable
end
end

View File

@ -454,4 +454,4 @@ function newobject:GetEnabled()
return self.enabled
end
end

View File

@ -368,4 +368,4 @@ function newobject:GetOpen()
return self.open
end
end

View File

@ -984,4 +984,3 @@ function newobject:SetColumnOrder(curid, newid)
return self
end

View File

@ -342,4 +342,4 @@ function newobject:GetName()
return self.name
end
end

View File

@ -397,4 +397,4 @@ function newobject:GetCellPadding()
return self.cellpadding
end
end

View File

@ -417,4 +417,4 @@ function newobject:GetImageHeight()
return image:getHeight()
end
end
end

View File

@ -337,4 +337,4 @@ function newobject:GetImageHeight()
return image:getHeight()
end
end
end

View File

@ -184,4 +184,4 @@ function newobject:GetAutoPosition()
return self.autoposition
end
end

View File

@ -454,4 +454,4 @@ function newobject:GetHorizontalScrollBody()
return false
end
end

View File

@ -243,4 +243,4 @@ function newobject:GetSelected()
return self.selected
end
end

View File

@ -165,4 +165,4 @@ function newobject:GetOffsetY()
return self.offsety
end
end

View File

@ -252,4 +252,4 @@ function newobject:SetFunction(func)
self.func = func
end
end

View File

@ -104,4 +104,4 @@ function newobject:draw()
drawfunc(self)
end
end
end

View File

@ -429,4 +429,4 @@ function newobject:Close()
self:Remove()
self.list.haslist = false
end
end

View File

@ -183,4 +183,4 @@ function newobject:GetText()
return self.text
end
end

View File

@ -236,4 +236,4 @@ function newobject:GetBarType()
return self.bartype
end
end

View File

@ -387,4 +387,4 @@ function newobject:GetBarType()
return self.bartype
end
end

View File

@ -224,4 +224,4 @@ function newobject:GetScrollBar()
return self.internals[1].internals[1]
end
end

View File

@ -166,4 +166,4 @@ function newobject:GetScrollType()
return self.scrolltype
end
end

View File

@ -255,4 +255,4 @@ function newobject:MoveToY(y)
self.staticy = y
end
end

View File

@ -231,4 +231,4 @@ function newobject:GetTabNumber()
return self.tabnumber
end
end

View File

@ -394,4 +394,4 @@ function newobject:GetFollowObject()
return self.followobject
end
end

View File

@ -303,4 +303,4 @@ function newobject:GetOpen()
return self.open
end
end

View File

@ -141,4 +141,4 @@ function newobject:mousepressed(x, y, button)
print(self.parent.level)
end
end
end

View File

@ -812,4 +812,4 @@ function newobject:GetDTScrolling()
return self.dtscrolling
end
end

View File

@ -329,4 +329,4 @@ function newobject:SetVisible(bool)
return self
end
end

View File

@ -451,4 +451,4 @@ function newobject:GetEnabled()
return self.enabled
end
end

View File

@ -524,4 +524,4 @@ function newobject:GetDecimals()
return self.decimals
end
end

View File

@ -173,4 +173,4 @@ function newobject:mousereleased(x, y, button)
v:mousereleased(x, y, button)
end
end
end

View File

@ -351,4 +351,4 @@ function newobject:GetText()
return self.text
end
end

View File

@ -553,4 +553,4 @@ function newobject:GetEnabled()
return self.enabled
end
end

View File

@ -763,4 +763,4 @@ function newobject:GetAutoButtonAreaWidth()
return self.autobuttonareawidth
end
end

View File

@ -2106,4 +2106,4 @@ function newobject:ClearLine(line)
return self
end
end

View File

@ -345,4 +345,4 @@ function newobject:GetHorizontalScrollBody()
return item
end
end

View File

@ -43,4 +43,4 @@ skin.controls.columnlistrow_body_hover_color = {255, 173, 51, 255}
skin.controls.menuoption_body_hover_color = {255, 153, 0, 255}
-- register the skin
loveframes.skins.Register(skin)
loveframes.skins.Register(skin)

View File

@ -1 +1 @@
--[[------------------------------------------------ -- Love Frames - A GUI library for LOVE -- -- Copyright (c) 2012-2014 Kenny Shields -- --]]------------------------------------------------ --[[------------------------------------------------ -- note: This is the base template for all Love Frames objects. You should not edit or delete this template unless you know what you are doing. --]]------------------------------------------------ -- template table local template = {} -- template name template.name = "Base" -- template properties template.properties = {} template.properties["*"] = { state = "none", x = 0, y = 0, width = 5, height = 5, staticx = 0, staticy = 0, draworder = 0, collide = true, internal = false, visible = true, hover = false, alwaysupdate = false, retainsize = false, calledmousefunc = false, skin = nil, clickbounds = nil, Draw = nil, Update = nil, OnMouseEnter = nil, OnMouseExit = nil } return template
--[[------------------------------------------------ -- Love Frames - A GUI library for LOVE -- -- Copyright (c) 2012-2014 Kenny Shields -- --]]------------------------------------------------ --[[------------------------------------------------ -- note: This is the base template for all Love Frames objects. You should not edit or delete this template unless you know what you are doing. --]]------------------------------------------------ -- template table local template = {} -- template name template.name = "Base" -- template properties template.properties = {} template.properties["*"] = { state = "none", x = 0, y = 0, width = 5, height = 5, staticx = 0, staticy = 0, draworder = 0, collide = true, internal = false, visible = true, hover = false, alwaysupdate = false, retainsize = false, calledmousefunc = false, skin = nil, clickbounds = nil, Draw = nil, Update = nil, OnMouseEnter = nil, OnMouseExit = nil } return template