Replace Qt with TQt

Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
pull/29/head
Michele Calgaro 2 months ago
parent 7f48e94296
commit cbb59d7906
Signed by: MicheleC
GPG Key ID: 2A75B7CA8ADED5CF

@ -4,7 +4,7 @@
tdepowersave tdepowersave
\- A TDE KPart Application \- A TDE KPart Application
.SH SYNOPSIS .SH SYNOPSIS
tdepowersave [Qt\-options] [TDE\-options] tdepowersave [TQt\-options] [TDE\-options]
.SH DESCRIPTION .SH DESCRIPTION
A TDE KPart Application A TDE KPart Application
.SH OPTIONS .SH OPTIONS
@ -13,8 +13,8 @@ A TDE KPart Application
.B \-\-help .B \-\-help
Show help about options Show help about options
.TP .TP
.B \-\-help\-qt .B \-\-help\-tqt
Show Qt specific options Show TQt specific options
.TP .TP
.B \-\-help\-tde .B \-\-help\-tde
Show TDE specific options Show TDE specific options
@ -65,7 +65,7 @@ sets the client geometry of the main widget - see man X for the argument format
.TP .TP
.B \-\-nofork .B \-\-nofork
Don't run in the background. Don't run in the background.
.SS Qt options: .SS TQt options:
.TP .TP
.B \-\-display <displayname> .B \-\-display <displayname>
Use the X-server display 'displayname' Use the X-server display 'displayname'
@ -84,7 +84,7 @@ using the QApplication::ManyColor color
specification specification
.TP .TP
.B \-\-nograb .B \-\-nograb
tells Qt to never grab the mouse or the keyboard tells TQt to never grab the mouse or the keyboard
.TP .TP
.B \-\-dograb .B \-\-dograb
running under a debugger can cause an implicit running under a debugger can cause an implicit

@ -11,10 +11,10 @@
* \li Bug \b #245081 - TDEPowersave does not set (ondemand) governor on startup \n * \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 * \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 * 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 * 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 QT are not really independent * 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 * (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 #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 #230686 - TDEPowersave need to be restarted to set changed DPMS settings \n
* \li Bug \b #230965 - puzzling battery state info \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 * \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 * 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. * 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 * destroyed() signal of the dialog \n \n
* \li Bug \b #82880 - KDE: KMessageBox::error not on top since KDE 3.4 \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 * All TDEPowersave error messages are not on the top, and popup in the background. \n \n

@ -35,7 +35,7 @@
#include <tdelocale.h> #include <tdelocale.h>
#include <kiconloader.h> #include <kiconloader.h>
// QT headers: // TQt headers:
#include <tqbuttongroup.h> #include <tqbuttongroup.h>
#include <tqdialog.h> #include <tqdialog.h>
#include <tqlabel.h> #include <tqlabel.h>

@ -38,7 +38,7 @@
#include <kinputdialog.h> #include <kinputdialog.h>
#include <tdeaccelmanager.h> #include <tdeaccelmanager.h>
// QT - Headers // TQt - Headers
#include <tqcheckbox.h> #include <tqcheckbox.h>
#include <tqcombobox.h> #include <tqcombobox.h>
#include <tqdialog.h> #include <tqdialog.h>

@ -36,7 +36,7 @@
#include <kiconloader.h> #include <kiconloader.h>
#include <kprogress.h> #include <kprogress.h>
// QT headers: // TQt headers:
#include <tqdialog.h> #include <tqdialog.h>
#include <tqlabel.h> #include <tqlabel.h>
#include <tqprogressbar.h> #include <tqprogressbar.h>

@ -29,7 +29,7 @@
#include <config.h> #include <config.h>
#endif #endif
// QT - Header // TQt - Header
#include <tqtimer.h> #include <tqtimer.h>
// KDE Header // KDE Header

@ -35,7 +35,7 @@
#define DBUS_API_SUBJECT_TO_CHANGE #define DBUS_API_SUBJECT_TO_CHANGE
#endif #endif
// QT - Header // TQt - Header
#include <tqobject.h> #include <tqobject.h>
#include <tqstring.h> #include <tqstring.h>

@ -36,7 +36,7 @@
#include <kiconloader.h> #include <kiconloader.h>
#include <tdelocale.h> #include <tdelocale.h>
// QT headers: // TQt headers:
#include <tqpushbutton.h> #include <tqpushbutton.h>
#include <tqlayout.h> #include <tqlayout.h>
#include <tqlabel.h> #include <tqlabel.h>

@ -28,7 +28,7 @@
// KDE headers: // KDE headers:
#include <kprogress.h> #include <kprogress.h>
// other QT headers: // other TQt headers:
#include <tqpixmap.h> #include <tqpixmap.h>
// own headers: // own headers:

@ -32,7 +32,7 @@
#include <fcntl.h> #include <fcntl.h>
#include <math.h> #include <math.h>
// include QT header // include TQt header
#include <tqtimer.h> #include <tqtimer.h>
#include <tqdir.h> #include <tqdir.h>

@ -33,7 +33,7 @@
#ifndef _HARDWARE_H_ #ifndef _HARDWARE_H_
#define _HARDWARE_H_ #define _HARDWARE_H_
// QT - Header // TQt - Header
#include <tqstring.h> #include <tqstring.h>
#include <tqobject.h> #include <tqobject.h>
#include <tqvaluelist.h> #include <tqvaluelist.h>

@ -32,7 +32,7 @@
#ifndef _BATTERY_H_ #ifndef _BATTERY_H_
#define _BATTERY_H_ #define _BATTERY_H_
// QT - Header // TQt - Header
#include <tqstring.h> #include <tqstring.h>
#include <tqstringlist.h> #include <tqstringlist.h>
#include <tqobject.h> #include <tqobject.h>

@ -31,7 +31,7 @@
#ifndef _BATTERYCOLLECTION_H_ #ifndef _BATTERYCOLLECTION_H_
#define _BATTERYCOLLECTION_H_ #define _BATTERYCOLLECTION_H_
// QT - Header // TQt - Header
#include <tqstring.h> #include <tqstring.h>
#include <tqstringlist.h> #include <tqstringlist.h>
#include <tqobject.h> #include <tqobject.h>

@ -36,7 +36,7 @@
#include "hardware_cpu.h" #include "hardware_cpu.h"
#include "hardware_cpu.moc" #include "hardware_cpu.moc"
// QT Header // TQt Header
#include <tqdir.h> #include <tqdir.h>
#include <tqtimer.h> #include <tqtimer.h>

@ -33,7 +33,7 @@
#ifndef _HARDWARE_CPU_H_ #ifndef _HARDWARE_CPU_H_
#define _HARDWARE_CPU_H_ #define _HARDWARE_CPU_H_
// QT Headers // TQt Headers
#include <tqstring.h> #include <tqstring.h>
#include <tqobject.h> #include <tqobject.h>
#include <tqvaluelist.h> #include <tqvaluelist.h>

@ -23,7 +23,7 @@
// KDE Header // KDE Header
#include <kprocess.h> #include <kprocess.h>
// QT Header // TQt Header
#include <tqregexp.h> #include <tqregexp.h>
#include <tqstring.h> #include <tqstring.h>
#include <tqwidget.h> #include <tqwidget.h>

@ -36,7 +36,7 @@
#include <kiconloader.h> #include <kiconloader.h>
#include <tdelocale.h> #include <tdelocale.h>
// QT headers: // TQt headers:
#include <tqcheckbox.h> #include <tqcheckbox.h>
#include <tqdialog.h> #include <tqdialog.h>
#include <tqlabel.h> #include <tqlabel.h>

@ -28,7 +28,7 @@
#include <config.h> #include <config.h>
#endif #endif
// QT header // TQt header
#include <tqfile.h> #include <tqfile.h>
#include <tqtextstream.h> #include <tqtextstream.h>

@ -25,7 +25,7 @@
#include <kprocess.h> #include <kprocess.h>
#include <tdelocale.h> #include <tdelocale.h>
// QT Header // TQt Header
#include <tqstring.h> #include <tqstring.h>
#include <tqwidget.h> #include <tqwidget.h>
#include <tqtimer.h> #include <tqtimer.h>

@ -31,7 +31,7 @@
// KDE Header // KDE Header
#include <tdelocale.h> #include <tdelocale.h>
// QT Header // TQt Header
// own headers // own headers
#include "settings.h" #include "settings.h"

@ -28,7 +28,7 @@
// KDE - Header // KDE - Header
#include <tdeconfig.h> #include <tdeconfig.h>
// QT - Header // TQt - Header
#include <tqstring.h> #include <tqstring.h>
#include <tqstringlist.h> #include <tqstringlist.h>

@ -32,7 +32,7 @@
#include <tdelocale.h> #include <tdelocale.h>
#include <kiconloader.h> #include <kiconloader.h>
// QT - Headers // TQt - Headers
#include <tqdialog.h> #include <tqdialog.h>
#include <tqlabel.h> #include <tqlabel.h>
#include <tqstring.h> #include <tqstring.h>

@ -28,7 +28,7 @@
#include <dcopobject.h> #include <dcopobject.h>
#include <tdehardwaredevices.h> #include <tdehardwaredevices.h>
// QT - Header // TQt - Header
#include <tqpopupmenu.h> #include <tqpopupmenu.h>
// tdepowersave - Header // tdepowersave - Header

@ -25,7 +25,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
// QT - Header // TQt - Header
#include <tqdatetime.h> #include <tqdatetime.h>
// KDE Header // KDE Header

Loading…
Cancel
Save