summaryrefslogtreecommitdiffstats
path: root/kopete/libkopete/ui/kopetewidgets.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kopete/libkopete/ui/kopetewidgets.cpp')
-rw-r--r--kopete/libkopete/ui/kopetewidgets.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kopete/libkopete/ui/kopetewidgets.cpp b/kopete/libkopete/ui/kopetewidgets.cpp
index e424dc45..4b03f729 100644
--- a/kopete/libkopete/ui/kopetewidgets.cpp
+++ b/kopete/libkopete/ui/kopetewidgets.cpp
@@ -28,7 +28,7 @@ public:
return result;
}
- virtual TQWidget *create(const TQString &key, TQWidget *tqparent = 0, const char *name = 0);
+ virtual TQWidget *create(const TQString &key, TQWidget *parent = 0, const char *name = 0);
virtual TQIconSet iconSet(const TQString &key) const
{
@@ -113,17 +113,17 @@ KopeteWidgets::~KopeteWidgets()
{
}
-TQWidget *KopeteWidgets::create(const TQString &key, TQWidget *tqparent, const char *name)
+TQWidget *KopeteWidgets::create(const TQString &key, TQWidget *parent, const char *name)
{
if (key == TQString::tqfromLatin1("Kopete::UI::AddressBookLinkWidget"))
- return new Kopete::UI::AddressBookLinkWidget(tqparent, name);
+ return new Kopete::UI::AddressBookLinkWidget(parent, name);
if (key == TQString::tqfromLatin1("Kopete::UI::ListView::ListView"))
- return new Kopete::UI::ListView::ListView(tqparent, name);
+ return new Kopete::UI::ListView::ListView(parent, name);
if (key == TQString::tqfromLatin1("Kopete::UI::ListView::SearchLine"))
- return new Kopete::UI::ListView::SearchLine(tqparent, 0, name);
+ return new Kopete::UI::ListView::SearchLine(parent, 0, name);
return 0;
}