Fix missing Q_OBJECT macros

git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/kima@1245170 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
v3.5.13-sru
tpearson 13 years ago
parent 670adfafbb
commit 7eadc95d6f

@ -51,6 +51,7 @@ class TQLayoutItem;
@author Ken Werner
*/
class Kima : public KPanelApplet, TQToolTip {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:

@ -26,10 +26,11 @@
#include <sources/source.h>
/**
* SourceListItem
* SourceListItem
* @author Ken Werner
*/
class SourceListItem : public TQObject, public TQCheckListItem {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -31,6 +31,7 @@
* @author Ken Werner
*/
class ACPIThermalSrc : public LabelSource {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -32,6 +32,7 @@
* @author Ken Werner
*/
class BatterySrc : public LabelSource {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -29,6 +29,7 @@
* CpuinfoFreqSrc reads temperature values from /proc/cpuinfo
*/
class CpuinfoFreqSrc : public LabelSource {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -28,6 +28,7 @@
* HDDTempSrc reads temperature of your harddisk provided by hddtemp
*/
class HDDTempSrc : public LabelSource {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
/**

@ -32,6 +32,7 @@
* see /usr/src/linux/Documentation/hwmon/sysfs-interface
*/
class HwMonFanSrc : public LabelSource {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -32,6 +32,7 @@
* see /usr/src/linux/Documentation/hwmon/sysfs-interface
*/
class HwMonThermalSrc : public LabelSource {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -30,6 +30,7 @@
* which is provided by the i8k kernel module.
*/
class I8kSrc : public LabelSource {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -30,6 +30,7 @@
* which is provided by the ibm-acpi kernel module.
*/
class IBMACPIFanSrc : public LabelSource {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -30,6 +30,7 @@
* which is provided by the ibm-acpi kernel module.
*/
class IBMACPIThermalSrc : public LabelSource {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -32,6 +32,7 @@
* @author Ken Werner
*/
class IBMHDAPSSrc : public LabelSource {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -33,6 +33,7 @@
* It may work on other Apple machines as well (please let me know)
*/
class IbookG4ThermalSrc : public LabelSource {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -31,6 +31,7 @@ class TQLabel;
* @author Ken Werner
*/
class LabelSource : public TriggeredSource{
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -32,6 +32,7 @@ class KProcIO;
* @author Ken Werner
*/
class NVidiaThermalSrc : public LabelSource {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -30,6 +30,7 @@
* which is provided by the omnibook kernel module.
*/
class OmnibookThermalSrc : public LabelSource {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -29,6 +29,7 @@
* SysFreqSrc reads frequency values from /sys/devices/system/cpu/cpu0/cpufreq/scaling_cur_freq
*/
class SysFreqSrc : public LabelSource {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -35,6 +35,7 @@
* @author Ken Werner
*/
class ThreadedTrigger : public TQObject, TQThread{
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

@ -30,6 +30,7 @@
* which is provided by the ibm-acpi kernel module.
*/
class UptimeSrc : public LabelSource {
Q_OBJECT
TQ_OBJECT //macro which activates signals and slots (tqmoc)
public:
/**

Loading…
Cancel
Save