summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 15:59:41 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 15:59:41 -0600
commitb9e61d65a03e2fbbe4a7edfc0b1d3ce9d19754da (patch)
tree8837ae519743ef3e61f022eaca3ed38ada7f4880 /src
parentb8b43c222457131639df00d9d5bc15a1aeb318cd (diff)
downloadkima-b9e61d65a03e2fbbe4a7edfc0b1d3ce9d19754da.tar.gz
kima-b9e61d65a03e2fbbe4a7edfc0b1d3ce9d19754da.zip
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'src')
-rw-r--r--src/cpufreqd/cpufreqd.h2
-rw-r--r--src/flowlayout.h2
-rw-r--r--src/kima.h2
-rw-r--r--src/sourcelistitem.h2
-rw-r--r--src/sources/acpithermalsrc.h2
-rw-r--r--src/sources/batterysrc.h2
-rw-r--r--src/sources/cpuinfofreqsrc.h2
-rw-r--r--src/sources/hddtempsrc.h2
-rw-r--r--src/sources/hwmonfansrc.h2
-rw-r--r--src/sources/hwmonthermalsrc.h2
-rw-r--r--src/sources/i8ksrc.h2
-rw-r--r--src/sources/ibmacpifansrc.h2
-rw-r--r--src/sources/ibmacpithermalsrc.h2
-rw-r--r--src/sources/ibmhdaps.h2
-rw-r--r--src/sources/ibookg4thermalsrc.h2
-rw-r--r--src/sources/labelsource.h2
-rw-r--r--src/sources/nvidiathermalsrc.h2
-rw-r--r--src/sources/omnibookthermalsrc.h2
-rw-r--r--src/sources/source.h2
-rw-r--r--src/sources/sysfreqsrc.h2
-rw-r--r--src/sources/threadedtrigger.h2
-rw-r--r--src/sources/triggeredsource.h2
-rw-r--r--src/sources/uptimesrc.h2
23 files changed, 23 insertions, 23 deletions
diff --git a/src/cpufreqd/cpufreqd.h b/src/cpufreqd/cpufreqd.h
index dc0a67b..a3379be 100644
--- a/src/cpufreqd/cpufreqd.h
+++ b/src/cpufreqd/cpufreqd.h
@@ -33,7 +33,7 @@
class CPUFreqd: public TQObject {
Q_OBJECT
- TQ_OBJECT
+
public:
CPUFreqd();
diff --git a/src/flowlayout.h b/src/flowlayout.h
index eebf5e3..3690ece 100644
--- a/src/flowlayout.h
+++ b/src/flowlayout.h
@@ -28,7 +28,7 @@ class KConfig;
class FlowLayout : public TQLayout{
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* the direction for moveItem
diff --git a/src/kima.h b/src/kima.h
index 024af95..d331352 100644
--- a/src/kima.h
+++ b/src/kima.h
@@ -52,7 +52,7 @@ class TQLayoutItem;
*/
class Kima : public KPanelApplet, TQToolTip {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
diff --git a/src/sourcelistitem.h b/src/sourcelistitem.h
index af5db49..a7c31e1 100644
--- a/src/sourcelistitem.h
+++ b/src/sourcelistitem.h
@@ -31,7 +31,7 @@
*/
class SourceListItem : public TQObject, public TQCheckListItem {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source
diff --git a/src/sources/acpithermalsrc.h b/src/sources/acpithermalsrc.h
index 1e0277b..df64287 100644
--- a/src/sources/acpithermalsrc.h
+++ b/src/sources/acpithermalsrc.h
@@ -32,7 +32,7 @@
*/
class ACPIThermalSrc : public LabelSource {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source from the given File
diff --git a/src/sources/batterysrc.h b/src/sources/batterysrc.h
index 409cd23..67c41dd 100644
--- a/src/sources/batterysrc.h
+++ b/src/sources/batterysrc.h
@@ -33,7 +33,7 @@
*/
class BatterySrc : public LabelSource {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source
diff --git a/src/sources/cpuinfofreqsrc.h b/src/sources/cpuinfofreqsrc.h
index b47fedc..869a9f0 100644
--- a/src/sources/cpuinfofreqsrc.h
+++ b/src/sources/cpuinfofreqsrc.h
@@ -30,7 +30,7 @@
*/
class CpuinfoFreqSrc : public LabelSource {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source from the given File
diff --git a/src/sources/hddtempsrc.h b/src/sources/hddtempsrc.h
index 45ff25f..fd82c30 100644
--- a/src/sources/hddtempsrc.h
+++ b/src/sources/hddtempsrc.h
@@ -29,7 +29,7 @@
*/
class HDDTempSrc : public LabelSource {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
/**
* defines how many bytes are read at once from the network
diff --git a/src/sources/hwmonfansrc.h b/src/sources/hwmonfansrc.h
index 58fd4f5..0be1482 100644
--- a/src/sources/hwmonfansrc.h
+++ b/src/sources/hwmonfansrc.h
@@ -33,7 +33,7 @@
*/
class HwMonFanSrc : public LabelSource {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source from the given File
diff --git a/src/sources/hwmonthermalsrc.h b/src/sources/hwmonthermalsrc.h
index 032d656..8d073a4 100644
--- a/src/sources/hwmonthermalsrc.h
+++ b/src/sources/hwmonthermalsrc.h
@@ -33,7 +33,7 @@
*/
class HwMonThermalSrc : public LabelSource {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source from the given File
diff --git a/src/sources/i8ksrc.h b/src/sources/i8ksrc.h
index 74f78bb..d7b4f99 100644
--- a/src/sources/i8ksrc.h
+++ b/src/sources/i8ksrc.h
@@ -31,7 +31,7 @@
*/
class I8kSrc : public LabelSource {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source from the given File
diff --git a/src/sources/ibmacpifansrc.h b/src/sources/ibmacpifansrc.h
index 0384cfd..b253235 100644
--- a/src/sources/ibmacpifansrc.h
+++ b/src/sources/ibmacpifansrc.h
@@ -31,7 +31,7 @@
*/
class IBMACPIFanSrc : public LabelSource {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source from the given File and index
diff --git a/src/sources/ibmacpithermalsrc.h b/src/sources/ibmacpithermalsrc.h
index d44e96e..ad0fabc 100644
--- a/src/sources/ibmacpithermalsrc.h
+++ b/src/sources/ibmacpithermalsrc.h
@@ -31,7 +31,7 @@
*/
class IBMACPIThermalSrc : public LabelSource {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source from the given File and index
diff --git a/src/sources/ibmhdaps.h b/src/sources/ibmhdaps.h
index 40cd7e4..0526a33 100644
--- a/src/sources/ibmhdaps.h
+++ b/src/sources/ibmhdaps.h
@@ -33,7 +33,7 @@
*/
class IBMHDAPSSrc : public LabelSource {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source from the given File
diff --git a/src/sources/ibookg4thermalsrc.h b/src/sources/ibookg4thermalsrc.h
index 873cd90..63ec4e0 100644
--- a/src/sources/ibookg4thermalsrc.h
+++ b/src/sources/ibookg4thermalsrc.h
@@ -34,7 +34,7 @@
*/
class IbookG4ThermalSrc : public LabelSource {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source from the given File
diff --git a/src/sources/labelsource.h b/src/sources/labelsource.h
index 14d4746..ba23edc 100644
--- a/src/sources/labelsource.h
+++ b/src/sources/labelsource.h
@@ -32,7 +32,7 @@ class TQLabel;
*/
class LabelSource : public TriggeredSource{
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new DefaultSource from the given File
diff --git a/src/sources/nvidiathermalsrc.h b/src/sources/nvidiathermalsrc.h
index 61b7057..88a8fa0 100644
--- a/src/sources/nvidiathermalsrc.h
+++ b/src/sources/nvidiathermalsrc.h
@@ -33,7 +33,7 @@ class KProcIO;
*/
class NVidiaThermalSrc : public LabelSource {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source from the given File
diff --git a/src/sources/omnibookthermalsrc.h b/src/sources/omnibookthermalsrc.h
index 74ca78a..eea7a3c 100644
--- a/src/sources/omnibookthermalsrc.h
+++ b/src/sources/omnibookthermalsrc.h
@@ -31,7 +31,7 @@
*/
class OmnibookThermalSrc : public LabelSource {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source from the given File
diff --git a/src/sources/source.h b/src/sources/source.h
index 40e1033..9cb2541 100644
--- a/src/sources/source.h
+++ b/src/sources/source.h
@@ -34,7 +34,7 @@ class TQVBoxLayout;
*/
class Source : public TQObject {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source
diff --git a/src/sources/sysfreqsrc.h b/src/sources/sysfreqsrc.h
index b7c446a..4522563 100644
--- a/src/sources/sysfreqsrc.h
+++ b/src/sources/sysfreqsrc.h
@@ -30,7 +30,7 @@
*/
class SysFreqSrc : public LabelSource {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source from the given File
diff --git a/src/sources/threadedtrigger.h b/src/sources/threadedtrigger.h
index a6a69bf..cda4b20 100644
--- a/src/sources/threadedtrigger.h
+++ b/src/sources/threadedtrigger.h
@@ -36,7 +36,7 @@
*/
class ThreadedTrigger : public TQObject, TQThread{
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new ThreadedTrigger
diff --git a/src/sources/triggeredsource.h b/src/sources/triggeredsource.h
index aa32464..056f86d 100644
--- a/src/sources/triggeredsource.h
+++ b/src/sources/triggeredsource.h
@@ -31,7 +31,7 @@
*/
class TriggeredSource : public Source{
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new TriggeredSource
diff --git a/src/sources/uptimesrc.h b/src/sources/uptimesrc.h
index 21fbf47..deda18f 100644
--- a/src/sources/uptimesrc.h
+++ b/src/sources/uptimesrc.h
@@ -31,7 +31,7 @@
*/
class UptimeSrc : public LabelSource {
Q_OBJECT
- TQ_OBJECT //macro which activates signals and slots (tqmoc)
+ //macro which activates signals and slots (tqmoc)
public:
/**
* Creates a new Source from the given File and index