diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2023-08-12 18:46:00 +0900 |
---|---|---|
committer | TDE Gitea <gitea@mirror.git.trinitydesktop.org> | 2023-08-15 11:08:14 +0000 |
commit | 0af1d7236da380917af73f6d9b409c9e0e51a5f5 (patch) | |
tree | 48d4f14c138c8ffb330c0839004d581e5801dd80 | |
parent | 8ae8e9f8f436ea647a2985fc27e8003965b0ca18 (diff) | |
download | kcpuload-0af1d7236da380917af73f6d9b409c9e0e51a5f5.tar.gz kcpuload-0af1d7236da380917af73f6d9b409c9e0e51a5f5.zip |
Drop TQT_BASE_OBJECT* defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r-- | src/statpopup.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/statpopup.cpp b/src/statpopup.cpp index e8c3c8f..306d537 100644 --- a/src/statpopup.cpp +++ b/src/statpopup.cpp @@ -292,7 +292,7 @@ void StatPopup::setGrid(bool set) { void StatPopup::selectColor() { // which color? int whichDock; - if (sscanf(TQT_TQOBJECT(const_cast<TQT_BASE_OBJECT_NAME*>(sender()))->name(), "Color%d", &whichDock) != 1) + if (sscanf(sender()->name(), "Color%d", &whichDock) != 1) return; if (whichDock < 0 || whichDock >= r.size()) return; |