summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-03-26 12:51:16 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-03-26 19:17:40 +0900
commitcbb59d7906d7f13bb8adb84a7967133a98f54ec7 (patch)
tree79602bf28d89a4a8cec35d77e2fda3cca060ec40
parent7f48e94296ea14667b52ae7bbbb586966db29447 (diff)
downloadtdepowersave-cbb59d79.tar.gz
tdepowersave-cbb59d79.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--doc/man/tdepowersave.110
-rw-r--r--doc/other/doxy/fixed_bugs.dox8
-rw-r--r--src/blacklisteditdialog.cpp2
-rw-r--r--src/configuredialog.cpp2
-rw-r--r--src/countdowndialog.cpp2
-rw-r--r--src/dbusInterface.cpp2
-rw-r--r--src/dbusInterface.h2
-rw-r--r--src/detaileddialog.cpp2
-rw-r--r--src/detaileddialog.h2
-rw-r--r--src/hardware.cpp2
-rw-r--r--src/hardware.h2
-rw-r--r--src/hardware_battery.h2
-rw-r--r--src/hardware_batteryCollection.h2
-rw-r--r--src/hardware_cpu.cpp2
-rw-r--r--src/hardware_cpu.h2
-rw-r--r--src/inactivity.h2
-rw-r--r--src/infodialog.cpp2
-rw-r--r--src/logviewer.cpp2
-rw-r--r--src/screen.h2
-rw-r--r--src/settings.cpp2
-rw-r--r--src/settings.h2
-rw-r--r--src/suspenddialog.cpp2
-rw-r--r--src/tdepowersave.h2
-rw-r--r--src/tdepowersave_debug.h2
24 files changed, 31 insertions, 31 deletions
diff --git a/doc/man/tdepowersave.1 b/doc/man/tdepowersave.1
index d79cfd2..1428e20 100644
--- a/doc/man/tdepowersave.1
+++ b/doc/man/tdepowersave.1
@@ -4,7 +4,7 @@
tdepowersave
\- A TDE KPart Application
.SH SYNOPSIS
-tdepowersave [Qt\-options] [TDE\-options]
+tdepowersave [TQt\-options] [TDE\-options]
.SH DESCRIPTION
A TDE KPart Application
.SH OPTIONS
@@ -13,8 +13,8 @@ A TDE KPart Application
.B \-\-help
Show help about options
.TP
-.B \-\-help\-qt
-Show Qt specific options
+.B \-\-help\-tqt
+Show TQt specific options
.TP
.B \-\-help\-tde
Show TDE specific options
@@ -65,7 +65,7 @@ sets the client geometry of the main widget - see man X for the argument format
.TP
.B \-\-nofork
Don't run in the background.
-.SS Qt options:
+.SS TQt options:
.TP
.B \-\-display <displayname>
Use the X-server display 'displayname'
@@ -84,7 +84,7 @@ using the QApplication::ManyColor color
specification
.TP
.B \-\-nograb
-tells Qt to never grab the mouse or the keyboard
+tells TQt to never grab the mouse or the keyboard
.TP
.B \-\-dograb
running under a debugger can cause an implicit
diff --git a/doc/other/doxy/fixed_bugs.dox b/doc/other/doxy/fixed_bugs.dox
index e478b96..65911f9 100644
--- a/doc/other/doxy/fixed_bugs.dox
+++ b/doc/other/doxy/fixed_bugs.dox
@@ -11,10 +11,10 @@
* \li Bug \b #245081 - TDEPowersave does not set (ondemand) governor on startup \n
* \li Bug \b #244052 - Close lid of a laptop and suspend to ram cause TDEPowersave 100% CPU \n \n
* Needed to uncouple Action calls (as e.g. suspend on lidclose) which include blocking dialogs
-* from the related events. This is needed because otherwise the D-Bus QT3 bindings run amok
-* if the dialog block the filterfunction, since signals in QT are not really independent
+* from the related events. This is needed because otherwise the D-Bus TQt bindings run amok
+* if the dialog block the filterfunction, since signals in TQt are not really independent
* (they are more function calls). Used QTimer:SingleShot() for this since they go into the
-* QT event loop and don't follow the workflow of the rest of the program. \n \n
+* TQt event loop and don't follow the workflow of the rest of the program. \n \n
* \li Bug \b #229960 - CPUFREQ_DYNAMIC_PERFORMANCE seems to be ignored during boot and scheme change \n
* \li Bug \b #230686 - TDEPowersave need to be restarted to set changed DPMS settings \n
* \li Bug \b #230965 - puzzling battery state info \n
@@ -140,7 +140,7 @@
* \li Bug \b #95279 - tdepowersave progress bar popup does not handle "close" event. \n \n
* If the progressbar popup does not get closed by a "101%"-event, it does never
* close. If you close it via the window manager, tdepowersave never opens a popup again.
-* Fix: Now the suspend/progress dialog is Qt::WDestructiveClose and TDEPowersave connect to the
+* Fix: Now the suspend/progress dialog is TQt::WDestructiveClose and TDEPowersave connect to the
* destroyed() signal of the dialog \n \n
* \li Bug \b #82880 - KDE: KMessageBox::error not on top since KDE 3.4 \n \n
* All TDEPowersave error messages are not on the top, and popup in the background. \n \n
diff --git a/src/blacklisteditdialog.cpp b/src/blacklisteditdialog.cpp
index 9b50929..f9638f8 100644
--- a/src/blacklisteditdialog.cpp
+++ b/src/blacklisteditdialog.cpp
@@ -35,7 +35,7 @@
#include <tdelocale.h>
#include <kiconloader.h>
-// QT headers:
+// TQt headers:
#include <tqbuttongroup.h>
#include <tqdialog.h>
#include <tqlabel.h>
diff --git a/src/configuredialog.cpp b/src/configuredialog.cpp
index 73392be..5e933c6 100644
--- a/src/configuredialog.cpp
+++ b/src/configuredialog.cpp
@@ -38,7 +38,7 @@
#include <kinputdialog.h>
#include <tdeaccelmanager.h>
- // QT - Headers
+ // TQt - Headers
#include <tqcheckbox.h>
#include <tqcombobox.h>
#include <tqdialog.h>
diff --git a/src/countdowndialog.cpp b/src/countdowndialog.cpp
index 70087f3..1e028ef 100644
--- a/src/countdowndialog.cpp
+++ b/src/countdowndialog.cpp
@@ -36,7 +36,7 @@
#include <kiconloader.h>
#include <kprogress.h>
-// QT headers:
+// TQt headers:
#include <tqdialog.h>
#include <tqlabel.h>
#include <tqprogressbar.h>
diff --git a/src/dbusInterface.cpp b/src/dbusInterface.cpp
index b388a47..5180448 100644
--- a/src/dbusInterface.cpp
+++ b/src/dbusInterface.cpp
@@ -29,7 +29,7 @@
#include <config.h>
#endif
-// QT - Header
+// TQt - Header
#include <tqtimer.h>
// KDE Header
diff --git a/src/dbusInterface.h b/src/dbusInterface.h
index 3e197f7..c700057 100644
--- a/src/dbusInterface.h
+++ b/src/dbusInterface.h
@@ -35,7 +35,7 @@
#define DBUS_API_SUBJECT_TO_CHANGE
#endif
-// QT - Header
+// TQt - Header
#include <tqobject.h>
#include <tqstring.h>
diff --git a/src/detaileddialog.cpp b/src/detaileddialog.cpp
index 85de8bc..8390f29 100644
--- a/src/detaileddialog.cpp
+++ b/src/detaileddialog.cpp
@@ -36,7 +36,7 @@
#include <kiconloader.h>
#include <tdelocale.h>
-// QT headers:
+// TQt headers:
#include <tqpushbutton.h>
#include <tqlayout.h>
#include <tqlabel.h>
diff --git a/src/detaileddialog.h b/src/detaileddialog.h
index c897936..b7d40b3 100644
--- a/src/detaileddialog.h
+++ b/src/detaileddialog.h
@@ -28,7 +28,7 @@
// KDE headers:
#include <kprogress.h>
-// other QT headers:
+// other TQt headers:
#include <tqpixmap.h>
// own headers:
diff --git a/src/hardware.cpp b/src/hardware.cpp
index b098d9a..7def545 100644
--- a/src/hardware.cpp
+++ b/src/hardware.cpp
@@ -32,7 +32,7 @@
#include <fcntl.h>
#include <math.h>
-// include QT header
+// include TQt header
#include <tqtimer.h>
#include <tqdir.h>
diff --git a/src/hardware.h b/src/hardware.h
index 18207b9..314f961 100644
--- a/src/hardware.h
+++ b/src/hardware.h
@@ -33,7 +33,7 @@
#ifndef _HARDWARE_H_
#define _HARDWARE_H_
-// QT - Header
+// TQt - Header
#include <tqstring.h>
#include <tqobject.h>
#include <tqvaluelist.h>
diff --git a/src/hardware_battery.h b/src/hardware_battery.h
index 7cc24e3..25557f4 100644
--- a/src/hardware_battery.h
+++ b/src/hardware_battery.h
@@ -32,7 +32,7 @@
#ifndef _BATTERY_H_
#define _BATTERY_H_
-// QT - Header
+// TQt - Header
#include <tqstring.h>
#include <tqstringlist.h>
#include <tqobject.h>
diff --git a/src/hardware_batteryCollection.h b/src/hardware_batteryCollection.h
index 44938c7..8c977db 100644
--- a/src/hardware_batteryCollection.h
+++ b/src/hardware_batteryCollection.h
@@ -31,7 +31,7 @@
#ifndef _BATTERYCOLLECTION_H_
#define _BATTERYCOLLECTION_H_
-// QT - Header
+// TQt - Header
#include <tqstring.h>
#include <tqstringlist.h>
#include <tqobject.h>
diff --git a/src/hardware_cpu.cpp b/src/hardware_cpu.cpp
index 5bf25ac..ef4fe55 100644
--- a/src/hardware_cpu.cpp
+++ b/src/hardware_cpu.cpp
@@ -36,7 +36,7 @@
#include "hardware_cpu.h"
#include "hardware_cpu.moc"
-// QT Header
+// TQt Header
#include <tqdir.h>
#include <tqtimer.h>
diff --git a/src/hardware_cpu.h b/src/hardware_cpu.h
index bbcca40..f47a267 100644
--- a/src/hardware_cpu.h
+++ b/src/hardware_cpu.h
@@ -33,7 +33,7 @@
#ifndef _HARDWARE_CPU_H_
#define _HARDWARE_CPU_H_
-// QT Headers
+// TQt Headers
#include <tqstring.h>
#include <tqobject.h>
#include <tqvaluelist.h>
diff --git a/src/inactivity.h b/src/inactivity.h
index 5e788d6..e2f1594 100644
--- a/src/inactivity.h
+++ b/src/inactivity.h
@@ -23,7 +23,7 @@
// KDE Header
#include <kprocess.h>
-// QT Header
+// TQt Header
#include <tqregexp.h>
#include <tqstring.h>
#include <tqwidget.h>
diff --git a/src/infodialog.cpp b/src/infodialog.cpp
index 2486855..9205a5a 100644
--- a/src/infodialog.cpp
+++ b/src/infodialog.cpp
@@ -36,7 +36,7 @@
#include <kiconloader.h>
#include <tdelocale.h>
-// QT headers:
+// TQt headers:
#include <tqcheckbox.h>
#include <tqdialog.h>
#include <tqlabel.h>
diff --git a/src/logviewer.cpp b/src/logviewer.cpp
index ce652b5..a5336f4 100644
--- a/src/logviewer.cpp
+++ b/src/logviewer.cpp
@@ -28,7 +28,7 @@
#include <config.h>
#endif
-// QT header
+// TQt header
#include <tqfile.h>
#include <tqtextstream.h>
diff --git a/src/screen.h b/src/screen.h
index 629517b..f64b610 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -25,7 +25,7 @@
#include <kprocess.h>
#include <tdelocale.h>
-// QT Header
+// TQt Header
#include <tqstring.h>
#include <tqwidget.h>
#include <tqtimer.h>
diff --git a/src/settings.cpp b/src/settings.cpp
index 5ed02d9..c1a04d0 100644
--- a/src/settings.cpp
+++ b/src/settings.cpp
@@ -31,7 +31,7 @@
// KDE Header
#include <tdelocale.h>
-// QT Header
+// TQt Header
// own headers
#include "settings.h"
diff --git a/src/settings.h b/src/settings.h
index c1044be..c860f17 100644
--- a/src/settings.h
+++ b/src/settings.h
@@ -28,7 +28,7 @@
// KDE - Header
#include <tdeconfig.h>
-// QT - Header
+// TQt - Header
#include <tqstring.h>
#include <tqstringlist.h>
diff --git a/src/suspenddialog.cpp b/src/suspenddialog.cpp
index 3c6a155..69d6683 100644
--- a/src/suspenddialog.cpp
+++ b/src/suspenddialog.cpp
@@ -32,7 +32,7 @@
#include <tdelocale.h>
#include <kiconloader.h>
- // QT - Headers
+ // TQt - Headers
#include <tqdialog.h>
#include <tqlabel.h>
#include <tqstring.h>
diff --git a/src/tdepowersave.h b/src/tdepowersave.h
index cb09e56..4b7c0c2 100644
--- a/src/tdepowersave.h
+++ b/src/tdepowersave.h
@@ -28,7 +28,7 @@
#include <dcopobject.h>
#include <tdehardwaredevices.h>
-// QT - Header
+// TQt - Header
#include <tqpopupmenu.h>
// tdepowersave - Header
diff --git a/src/tdepowersave_debug.h b/src/tdepowersave_debug.h
index c978bfd..7be95d5 100644
--- a/src/tdepowersave_debug.h
+++ b/src/tdepowersave_debug.h
@@ -25,7 +25,7 @@
#include <stdio.h>
#include <stdlib.h>
-// QT - Header
+// TQt - Header
#include <tqdatetime.h>
// KDE Header