summaryrefslogtreecommitdiffstats
path: root/kcpuload/kcpuload/icontoggleaction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kcpuload/kcpuload/icontoggleaction.cpp')
-rw-r--r--kcpuload/kcpuload/icontoggleaction.cpp36
1 files changed, 18 insertions, 18 deletions
diff --git a/kcpuload/kcpuload/icontoggleaction.cpp b/kcpuload/kcpuload/icontoggleaction.cpp
index 521a213..3c39554 100644
--- a/kcpuload/kcpuload/icontoggleaction.cpp
+++ b/kcpuload/kcpuload/icontoggleaction.cpp
@@ -14,39 +14,39 @@
#include "icontoggleaction.h"
IconToggleAction::IconToggleAction(
- const QString& useTextUnchecked, const QString& useIconUnchecked,
- const QString& useTextChecked, const QString& useIconChecked,
- const KShortcut& cut, const QObject* receiver, const char* slot,
- QObject* parent, const char* name) :
+ const TQString& useTextUnchecked, const TQString& useIconUnchecked,
+ const TQString& useTextChecked, const TQString& useIconChecked,
+ const KShortcut& cut, const TQObject* receiver, const char* slot,
+ TQObject* tqparent, const char* name) :
KToggleAction(useTextUnchecked, useIconUnchecked, cut, receiver,
- slot, parent, name),
+ slot, tqparent, name),
textChecked(useTextChecked), textUnchecked(useTextUnchecked),
iconChecked(useIconChecked), iconUnchecked(useIconUnchecked) {
}
-IconToggleAction::IconToggleAction(const QString& useText,
- const QString& useIconUnchecked, const QString& useIconChecked,
- const KShortcut& cut, const QObject* receiver, const char* slot,
- QObject* parent, const char* name) :
+IconToggleAction::IconToggleAction(const TQString& useText,
+ const TQString& useIconUnchecked, const TQString& useIconChecked,
+ const KShortcut& cut, const TQObject* receiver, const char* slot,
+ TQObject* tqparent, const char* name) :
KToggleAction(useText, useIconUnchecked, cut, receiver,
- slot, parent, name),
+ slot, tqparent, name),
textChecked(useText), textUnchecked(useText),
iconChecked(useIconChecked), iconUnchecked(useIconUnchecked) {
}
IconToggleAction::IconToggleAction(
- const QString& useTextUnchecked, const QString& useIconUnchecked,
- const QString& useTextChecked, const QString& useIconChecked,
- const KShortcut& cut, QObject* parent, const char* name) :
- KToggleAction(useTextUnchecked, useIconUnchecked, cut, parent, name),
+ const TQString& useTextUnchecked, const TQString& useIconUnchecked,
+ const TQString& useTextChecked, const TQString& useIconChecked,
+ const KShortcut& cut, TQObject* tqparent, const char* name) :
+ KToggleAction(useTextUnchecked, useIconUnchecked, cut, tqparent, name),
textChecked(useTextChecked), textUnchecked(useTextUnchecked),
iconChecked(useIconChecked), iconUnchecked(useIconUnchecked) {
}
-IconToggleAction::IconToggleAction(const QString& useText,
- const QString& useIconUnchecked, const QString& useIconChecked,
- const KShortcut& cut, QObject* parent, const char* name) :
- KToggleAction(useText, useIconUnchecked, cut, parent, name),
+IconToggleAction::IconToggleAction(const TQString& useText,
+ const TQString& useIconUnchecked, const TQString& useIconChecked,
+ const KShortcut& cut, TQObject* tqparent, const char* name) :
+ KToggleAction(useText, useIconUnchecked, cut, tqparent, name),
textChecked(useText), textUnchecked(useText),
iconChecked(useIconChecked), iconUnchecked(useIconUnchecked) {
}