diff --git a/button.lua b/button.lua index 6131477..8094c60 100644 --- a/button.lua +++ b/button.lua @@ -1,4 +1,4 @@ --- This file is part of QUI, copyright (c) 2016 Matthias Richter +-- This file is part of SUIT, copyright (c) 2016 Matthias Richter local BASE = (...):match('(.-)[^%.]+$') local core = require(BASE .. 'core') diff --git a/checkbox.lua b/checkbox.lua index aac2044..3f634e5 100644 --- a/checkbox.lua +++ b/checkbox.lua @@ -1,4 +1,4 @@ --- This file is part of QUI, copyright (c) 2016 Matthias Richter +-- This file is part of SUIT, copyright (c) 2016 Matthias Richter local BASE = (...):match('(.-)[^%.]+$') local core = require(BASE .. 'core') diff --git a/core.lua b/core.lua index e5a4b1d..296429c 100644 --- a/core.lua +++ b/core.lua @@ -1,4 +1,4 @@ --- This file is part of QUI, copyright (c) 2016 Matthias Richter +-- This file is part of SUIT, copyright (c) 2016 Matthias Richter local BASE = (...):match('(.-)[^%.]+$') local theme = require(BASE..'theme') diff --git a/imagebutton.lua b/imagebutton.lua index dc25f41..169f409 100644 --- a/imagebutton.lua +++ b/imagebutton.lua @@ -1,4 +1,4 @@ --- This file is part of QUI, copyright (c) 2016 Matthias Richter +-- This file is part of SUIT, copyright (c) 2016 Matthias Richter local BASE = (...):match('(.-)[^%.]+$') local core = require(BASE .. 'core') diff --git a/init.lua b/init.lua index 0e1dcb7..c43d45e 100644 --- a/init.lua +++ b/init.lua @@ -1,4 +1,4 @@ --- This file is part of QUI, copyright (c) 2016 Matthias Richter +-- This file is part of SUIT, copyright (c) 2016 Matthias Richter local BASE = (...) .. '.' diff --git a/input.lua b/input.lua index 6a06c9c..9cbcabe 100644 --- a/input.lua +++ b/input.lua @@ -1,4 +1,4 @@ --- This file is part of QUI, copyright (c) 2016 Matthias Richter +-- This file is part of SUIT, copyright (c) 2016 Matthias Richter local BASE = (...):match('(.-)[^%.]+$') local core = require(BASE .. 'core') diff --git a/label.lua b/label.lua index d4c8202..6628664 100644 --- a/label.lua +++ b/label.lua @@ -1,4 +1,4 @@ --- This file is part of QUI, copyright (c) 2016 Matthias Richter +-- This file is part of SUIT, copyright (c) 2016 Matthias Richter local BASE = (...):match('(.-)[^%.]+$') local core = require(BASE .. 'core') diff --git a/layout.lua b/layout.lua index 8a5a553..b6782a1 100644 --- a/layout.lua +++ b/layout.lua @@ -1,4 +1,4 @@ --- This file is part of QUI, copyright (c) 2016 Matthias Richter +-- This file is part of SUIT, copyright (c) 2016 Matthias Richter local Layout = {} function Layout.new() diff --git a/slider.lua b/slider.lua index 5157d63..519cc78 100644 --- a/slider.lua +++ b/slider.lua @@ -1,4 +1,4 @@ --- This file is part of QUI, copyright (c) 2016 Matthias Richter +-- This file is part of SUIT, copyright (c) 2016 Matthias Richter local BASE = (...):match('(.-)[^%.]+$') local core = require(BASE .. 'core') diff --git a/theme.lua b/theme.lua index 1dca9d7..8279e8a 100644 --- a/theme.lua +++ b/theme.lua @@ -1,4 +1,4 @@ --- This file is part of QUI, copyright (c) 2016 Matthias Richter +-- This file is part of SUIT, copyright (c) 2016 Matthias Richter local BASE = (...):match('(.-)[^%.]+$')