summaryrefslogtreecommitdiffstats
path: root/parts/documentation/plugins/custom
diff options
context:
space:
mode:
Diffstat (limited to 'parts/documentation/plugins/custom')
-rw-r--r--parts/documentation/plugins/custom/doccustomplugin.cpp4
-rw-r--r--parts/documentation/plugins/custom/doccustomplugin.h2
2 files changed, 3 insertions, 3 deletions
diff --git a/parts/documentation/plugins/custom/doccustomplugin.cpp b/parts/documentation/plugins/custom/doccustomplugin.cpp
index 47012a2b..fb1a028b 100644
--- a/parts/documentation/plugins/custom/doccustomplugin.cpp
+++ b/parts/documentation/plugins/custom/doccustomplugin.cpp
@@ -32,9 +32,9 @@ static const KDevPluginInfo data("doccustomplugin");
typedef KDevGenericFactory<DocCustomPlugin> DocCustomPluginFactory;
K_EXPORT_COMPONENT_FACTORY( libdoccustomplugin, DocCustomPluginFactory(data) )
-DocCustomPlugin::DocCustomPlugin(TQObject* tqparent, const char* name, const TQStringList // args
+DocCustomPlugin::DocCustomPlugin(TQObject* parent, const char* name, const TQStringList // args
)
- :DocumentationPlugin(DocCustomPluginFactory::instance()->config(), tqparent, name)
+ :DocumentationPlugin(DocCustomPluginFactory::instance()->config(), parent, name)
{
setCapabilities(CustomDocumentationTitles | ProjectUserManual);
autoSetup();
diff --git a/parts/documentation/plugins/custom/doccustomplugin.h b/parts/documentation/plugins/custom/doccustomplugin.h
index 33efec8f..cabd2554 100644
--- a/parts/documentation/plugins/custom/doccustomplugin.h
+++ b/parts/documentation/plugins/custom/doccustomplugin.h
@@ -24,7 +24,7 @@
class DocCustomPlugin : public DocumentationPlugin {
public:
- DocCustomPlugin(TQObject* tqparent, const char* name, const TQStringList args = TQStringList());
+ DocCustomPlugin(TQObject* parent, const char* name, const TQStringList args = TQStringList());
~DocCustomPlugin();
virtual TQString pluginName() const;