diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-09 22:58:31 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-11-20 14:26:15 +0900 |
commit | c1e3b95ae6a113ba6548f2ac4d63f739a4f7055f (patch) | |
tree | f942598c69da9c19df6618f25d16ea9dcbe0a30f /kicker | |
parent | 657e8ed6bdc71ab1ae238bdf61a9377cff768e38 (diff) | |
download | tdebase-c1e3b95ae6a113ba6548f2ac4d63f739a4f7055f.tar.gz tdebase-c1e3b95ae6a113ba6548f2ac4d63f739a4f7055f.zip |
Rename KUniqueApplication to TDEUniqueApplication
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'kicker')
-rw-r--r-- | kicker/DESIGN | 2 | ||||
-rw-r--r-- | kicker/kicker/core/kicker.cpp | 2 | ||||
-rw-r--r-- | kicker/kicker/core/kicker.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/kicker/DESIGN b/kicker/DESIGN index d589ab833..2bdc65706 100644 --- a/kicker/DESIGN +++ b/kicker/DESIGN @@ -16,7 +16,7 @@ Contents NOTE: This is the design which we are working towards, not the design as it currently is, but there's no point in documenting yesterday. -The class Kicker is a subclass of KUniqueApplication and is where all the +The class Kicker is a subclass of TDEUniqueApplication and is where all the fun begins. It is always available via the static Kicker::kicker() method. Upon creation, Kicker::kicker() ensures that its resources are added to the standard dirs. This includes tile, background and various plugin directories. diff --git a/kicker/kicker/core/kicker.cpp b/kicker/kicker/core/kicker.cpp index 19c348851..b5d21c28e 100644 --- a/kicker/kicker/core/kicker.cpp +++ b/kicker/kicker/core/kicker.cpp @@ -62,7 +62,7 @@ Kicker* Kicker::the() { return static_cast<Kicker*>(kapp); } Kicker::Kicker() - : KUniqueApplication(), + : TDEUniqueApplication(), keys(0), m_twinModule(0), m_configDialog(0), diff --git a/kicker/kicker/core/kicker.h b/kicker/kicker/core/kicker.h index 1868c0bbe..5a76570a5 100644 --- a/kicker/kicker/core/kicker.h +++ b/kicker/kicker/core/kicker.h @@ -26,7 +26,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include <tqcolor.h> -#include <kuniqueapplication.h> +#include <tdeuniqueapplication.h> #include <kicontheme.h> class KCMultiDialog; @@ -36,7 +36,7 @@ class KWinModule; class PanelKMenu; class PanelPopupButton; -class Kicker : public KUniqueApplication +class Kicker : public TDEUniqueApplication { TQ_OBJECT K_DCOP |