summaryrefslogtreecommitdiffstats
path: root/kivio/kiviopart/tools/mousetoolaction.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kivio/kiviopart/tools/mousetoolaction.cpp')
-rw-r--r--kivio/kiviopart/tools/mousetoolaction.cpp28
1 files changed, 14 insertions, 14 deletions
diff --git a/kivio/kiviopart/tools/mousetoolaction.cpp b/kivio/kiviopart/tools/mousetoolaction.cpp
index 26238213..e46e522c 100644
--- a/kivio/kiviopart/tools/mousetoolaction.cpp
+++ b/kivio/kiviopart/tools/mousetoolaction.cpp
@@ -25,50 +25,50 @@
namespace Kivio {
MouseToolAction::MouseToolAction(const TQString& text, const KShortcut& cut,
- TQObject* tqparent, const char* name)
- : KRadioAction(text, cut, tqparent, name)
+ TQObject* parent, const char* name)
+ : KRadioAction(text, cut, parent, name)
{
}
MouseToolAction::MouseToolAction(const TQString& text, const KShortcut& cut,
const TQObject* receiver, const char* slot,
- TQObject* tqparent, const char* name)
- : KRadioAction(text, cut, receiver, slot, tqparent, name)
+ TQObject* parent, const char* name)
+ : KRadioAction(text, cut, receiver, slot, parent, name)
{
}
MouseToolAction::MouseToolAction(const TQString& text, const TQIconSet& pix,
const KShortcut& cut,
- TQObject* tqparent, const char* name)
- : KRadioAction(text, pix, cut, tqparent, name)
+ TQObject* parent, const char* name)
+ : KRadioAction(text, pix, cut, parent, name)
{
}
MouseToolAction::MouseToolAction(const TQString& text, const TQString& pix,
const KShortcut& cut,
- TQObject* tqparent, const char* name)
- : KRadioAction(text, pix, cut, tqparent, name)
+ TQObject* parent, const char* name)
+ : KRadioAction(text, pix, cut, parent, name)
{
}
MouseToolAction::MouseToolAction(const TQString& text, const TQIconSet& pix,
const KShortcut& cut,
const TQObject* receiver, const char* slot,
- TQObject* tqparent, const char* name)
- : KRadioAction(text, pix, cut, receiver, slot, tqparent, name)
+ TQObject* parent, const char* name)
+ : KRadioAction(text, pix, cut, receiver, slot, parent, name)
{
}
MouseToolAction::MouseToolAction(const TQString& text, const TQString& pix,
const KShortcut& cut,
const TQObject* receiver, const char* slot,
- TQObject* tqparent, const char* name)
- : KRadioAction(text, pix, cut, receiver, slot, tqparent, name)
+ TQObject* parent, const char* name)
+ : KRadioAction(text, pix, cut, receiver, slot, parent, name)
{
}
-MouseToolAction::MouseToolAction(TQObject* tqparent, const char* name)
- : KRadioAction(tqparent, name)
+MouseToolAction::MouseToolAction(TQObject* parent, const char* name)
+ : KRadioAction(parent, name)
{
}