summaryrefslogtreecommitdiffstats
path: root/kbruch
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 16:07:00 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2012-02-17 16:07:00 -0600
commit1a7e498bdb3f755b79c06cb87fe4fad2cf8e7bf3 (patch)
tree7aca707994f0758ad30d3bcc0041d5b246f2269e /kbruch
parent84ab9f7387b7993eed7c393763b3dc89dfa3a56d (diff)
downloadtdeedu-1a7e498bdb3f755b79c06cb87fe4fad2cf8e7bf3.tar.gz
tdeedu-1a7e498bdb3f755b79c06cb87fe4fad2cf8e7bf3.zip
Remove spurious TQ_OBJECT instances
Diffstat (limited to 'kbruch')
-rw-r--r--kbruch/src/exercisebase.h2
-rw-r--r--kbruch/src/exercisecompare.h2
-rw-r--r--kbruch/src/exerciseconvert.h2
-rw-r--r--kbruch/src/exercisefactorize.h2
-rw-r--r--kbruch/src/factorizedwidget.h2
-rw-r--r--kbruch/src/fractionbasewidget.h2
-rw-r--r--kbruch/src/mainqtwidget.h2
-rw-r--r--kbruch/src/rationalwidget.h2
-rw-r--r--kbruch/src/ratiowidget.h2
-rw-r--r--kbruch/src/resultwidget.h2
-rw-r--r--kbruch/src/statisticsview.h2
-rw-r--r--kbruch/src/taskview.h2
-rw-r--r--kbruch/src/taskwidget.h2
13 files changed, 13 insertions, 13 deletions
diff --git a/kbruch/src/exercisebase.h b/kbruch/src/exercisebase.h
index 9d2f2089..459f0d7d 100644
--- a/kbruch/src/exercisebase.h
+++ b/kbruch/src/exercisebase.h
@@ -36,7 +36,7 @@
class ExerciseBase : public TQWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
/** constructor */
diff --git a/kbruch/src/exercisecompare.h b/kbruch/src/exercisecompare.h
index e21bd69b..54e81138 100644
--- a/kbruch/src/exercisecompare.h
+++ b/kbruch/src/exercisecompare.h
@@ -45,7 +45,7 @@ class TQVBoxLayout;
class ExerciseCompare : public ExerciseBase
{
Q_OBJECT
- TQ_OBJECT
+
public:
/** constructor */
diff --git a/kbruch/src/exerciseconvert.h b/kbruch/src/exerciseconvert.h
index feb3e5b8..777eff76 100644
--- a/kbruch/src/exerciseconvert.h
+++ b/kbruch/src/exerciseconvert.h
@@ -43,7 +43,7 @@ class TQVBoxLayout;
class ExerciseConvert : public ExerciseBase
{
Q_OBJECT
- TQ_OBJECT
+
public:
/** constructor */
diff --git a/kbruch/src/exercisefactorize.h b/kbruch/src/exercisefactorize.h
index c5ded345..716104fd 100644
--- a/kbruch/src/exercisefactorize.h
+++ b/kbruch/src/exercisefactorize.h
@@ -60,7 +60,7 @@ const uint possibleTasks[numberPossibleTasks] = {4, 6, 8, 9, 10, 12, 14, 15, 16,
class ExerciseFactorize : public ExerciseBase
{
Q_OBJECT
- TQ_OBJECT
+
public:
/** constructor */
diff --git a/kbruch/src/factorizedwidget.h b/kbruch/src/factorizedwidget.h
index 8a62b76e..8311a38e 100644
--- a/kbruch/src/factorizedwidget.h
+++ b/kbruch/src/factorizedwidget.h
@@ -35,7 +35,7 @@ typedef TQValueList<uint> uintList;
class FactorizedWidget : public FractionBaseWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
/** constructor */
diff --git a/kbruch/src/fractionbasewidget.h b/kbruch/src/fractionbasewidget.h
index 5e3c9ea6..1d6a3976 100644
--- a/kbruch/src/fractionbasewidget.h
+++ b/kbruch/src/fractionbasewidget.h
@@ -36,7 +36,7 @@
class FractionBaseWidget : public TQWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
/** constructor */
diff --git a/kbruch/src/mainqtwidget.h b/kbruch/src/mainqtwidget.h
index d6506cde..3f0f6f08 100644
--- a/kbruch/src/mainqtwidget.h
+++ b/kbruch/src/mainqtwidget.h
@@ -40,7 +40,7 @@ class TaskView;
class MainQtWidget : public KMainWindow
{
Q_OBJECT
- TQ_OBJECT
+
public:
/** constructor */
diff --git a/kbruch/src/rationalwidget.h b/kbruch/src/rationalwidget.h
index 84a6fa9f..46f85221 100644
--- a/kbruch/src/rationalwidget.h
+++ b/kbruch/src/rationalwidget.h
@@ -34,7 +34,7 @@ class TQString;
class RationalWidget : public FractionBaseWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
/** constructor */
diff --git a/kbruch/src/ratiowidget.h b/kbruch/src/ratiowidget.h
index b8dfb706..7ac10017 100644
--- a/kbruch/src/ratiowidget.h
+++ b/kbruch/src/ratiowidget.h
@@ -33,7 +33,7 @@
class RatioWidget : public FractionBaseWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
/** constructor */
diff --git a/kbruch/src/resultwidget.h b/kbruch/src/resultwidget.h
index ec5f5b59..609f6bc2 100644
--- a/kbruch/src/resultwidget.h
+++ b/kbruch/src/resultwidget.h
@@ -33,7 +33,7 @@
class ResultWidget : public FractionBaseWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
/** constructor */
diff --git a/kbruch/src/statisticsview.h b/kbruch/src/statisticsview.h
index c95eec0e..b334e6d7 100644
--- a/kbruch/src/statisticsview.h
+++ b/kbruch/src/statisticsview.h
@@ -37,7 +37,7 @@ class TQGridLayout;
class StatisticsView : public TQWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
/** constructor */
diff --git a/kbruch/src/taskview.h b/kbruch/src/taskview.h
index a586dd95..d0a4c61c 100644
--- a/kbruch/src/taskview.h
+++ b/kbruch/src/taskview.h
@@ -51,7 +51,7 @@ class TQFrame;
class TaskView : public ExerciseBase
{
Q_OBJECT
- TQ_OBJECT
+
public:
/** constructor */
diff --git a/kbruch/src/taskwidget.h b/kbruch/src/taskwidget.h
index b9b8347b..117acff3 100644
--- a/kbruch/src/taskwidget.h
+++ b/kbruch/src/taskwidget.h
@@ -43,7 +43,7 @@
class TaskWidget : public FractionBaseWidget
{
Q_OBJECT
- TQ_OBJECT
+
public:
/** constructor */