summaryrefslogtreecommitdiffstats
path: root/kfile-plugins
diff options
context:
space:
mode:
Diffstat (limited to 'kfile-plugins')
-rw-r--r--kfile-plugins/cert/kfile_cert.cpp4
-rw-r--r--kfile-plugins/cert/kfile_cert.h2
-rw-r--r--kfile-plugins/desktop/kfile_desktop.cpp4
-rw-r--r--kfile-plugins/desktop/kfile_desktop.h2
-rw-r--r--kfile-plugins/folder/kfile_folder.cpp4
-rw-r--r--kfile-plugins/folder/kfile_folder.h2
-rw-r--r--kfile-plugins/html/kfile_html.cpp4
-rw-r--r--kfile-plugins/html/kfile_html.h2
-rw-r--r--kfile-plugins/lnk/kfile_lnk.cpp4
-rw-r--r--kfile-plugins/lnk/kfile_lnk.h2
-rw-r--r--kfile-plugins/mhtml/kfile_mhtml.cpp4
-rw-r--r--kfile-plugins/mhtml/kfile_mhtml.h2
-rw-r--r--kfile-plugins/txt/kfile_txt.cpp4
-rw-r--r--kfile-plugins/txt/kfile_txt.h2
14 files changed, 21 insertions, 21 deletions
diff --git a/kfile-plugins/cert/kfile_cert.cpp b/kfile-plugins/cert/kfile_cert.cpp
index 3ffd163..8a711ba 100644
--- a/kfile-plugins/cert/kfile_cert.cpp
+++ b/kfile-plugins/cert/kfile_cert.cpp
@@ -39,8 +39,8 @@ typedef KGenericFactory<CertPlugin> CertFactory;
K_EXPORT_COMPONENT_FACTORY(kfile_cert, CertFactory("kfile-cert"))
-CertPlugin::CertPlugin(TQObject *tqparent, const char *name, const TQStringList &args)
- : KFilePlugin(tqparent, name, args)
+CertPlugin::CertPlugin(TQObject *parent, const char *name, const TQStringList &args)
+ : KFilePlugin(parent, name, args)
{
//add the mimetype here - example:
//KFileMimeTypeInfo* info = addMimeTypeInfo( "text/html" );
diff --git a/kfile-plugins/cert/kfile_cert.h b/kfile-plugins/cert/kfile_cert.h
index 2991674..8756d5e 100644
--- a/kfile-plugins/cert/kfile_cert.h
+++ b/kfile-plugins/cert/kfile_cert.h
@@ -35,7 +35,7 @@ class CertPlugin: public KFilePlugin {
private:
void appendDNItems(KFileMetaInfoGroup &group, const TQString &DN);
public:
- CertPlugin(TQObject *tqparent, const char *name, const TQStringList& args);
+ CertPlugin(TQObject *parent, const char *name, const TQStringList& args);
virtual bool readInfo(KFileMetaInfo& info, uint what);
};
diff --git a/kfile-plugins/desktop/kfile_desktop.cpp b/kfile-plugins/desktop/kfile_desktop.cpp
index 5d2c9cc..5c56d9e 100644
--- a/kfile-plugins/desktop/kfile_desktop.cpp
+++ b/kfile-plugins/desktop/kfile_desktop.cpp
@@ -30,9 +30,9 @@ typedef KGenericFactory<KDotDesktopPlugin> DotDesktopFactory;
K_EXPORT_COMPONENT_FACTORY(kfile_desktop, DotDesktopFactory("kfile_desktop"))
-KDotDesktopPlugin::KDotDesktopPlugin(TQObject *tqparent, const char *name,
+KDotDesktopPlugin::KDotDesktopPlugin(TQObject *parent, const char *name,
const TQStringList &preferredItems)
- : KFilePlugin(tqparent, name, preferredItems)
+ : KFilePlugin(parent, name, preferredItems)
{
kdDebug(7034) << ".desktop plugin\n";
diff --git a/kfile-plugins/desktop/kfile_desktop.h b/kfile-plugins/desktop/kfile_desktop.h
index f4d6b25..3cc6db0 100644
--- a/kfile-plugins/desktop/kfile_desktop.h
+++ b/kfile-plugins/desktop/kfile_desktop.h
@@ -31,7 +31,7 @@ class KDotDesktopPlugin: public KFilePlugin
TQ_OBJECT
public:
- KDotDesktopPlugin( TQObject *tqparent, const char *name,
+ KDotDesktopPlugin( TQObject *parent, const char *name,
const TQStringList& args );
virtual bool readInfo ( KFileMetaInfo& info, uint what );
diff --git a/kfile-plugins/folder/kfile_folder.cpp b/kfile-plugins/folder/kfile_folder.cpp
index 8b08084..fe4ea9a 100644
--- a/kfile-plugins/folder/kfile_folder.cpp
+++ b/kfile-plugins/folder/kfile_folder.cpp
@@ -30,10 +30,10 @@ typedef KGenericFactory<KFolderPlugin> KFolderFactory;
K_EXPORT_COMPONENT_FACTORY(kfile_folder, KFolderFactory( "kfile_folder" ))
-KFolderPlugin::KFolderPlugin(TQObject *tqparent, const char *name,
+KFolderPlugin::KFolderPlugin(TQObject *parent, const char *name,
const TQStringList &args)
- : KFilePlugin(tqparent, name, args)
+ : KFilePlugin(parent, name, args)
{
KFileMimeTypeInfo* info = addMimeTypeInfo( "inode/directory" );
diff --git a/kfile-plugins/folder/kfile_folder.h b/kfile-plugins/folder/kfile_folder.h
index ff3f241..7ad20ad 100644
--- a/kfile-plugins/folder/kfile_folder.h
+++ b/kfile-plugins/folder/kfile_folder.h
@@ -30,7 +30,7 @@ class KFolderPlugin: public KFilePlugin
TQ_OBJECT
public:
- KFolderPlugin( TQObject *tqparent, const char *name, const TQStringList& args );
+ KFolderPlugin( TQObject *parent, const char *name, const TQStringList& args );
virtual bool readInfo( KFileMetaInfo& info, uint what);
};
diff --git a/kfile-plugins/html/kfile_html.cpp b/kfile-plugins/html/kfile_html.cpp
index 3711e46..7ed2859 100644
--- a/kfile-plugins/html/kfile_html.cpp
+++ b/kfile-plugins/html/kfile_html.cpp
@@ -34,9 +34,9 @@ typedef KGenericFactory<KHtmlPlugin> HtmlFactory;
K_EXPORT_COMPONENT_FACTORY( kfile_html, HtmlFactory( "kfile_html" ) )
-KHtmlPlugin::KHtmlPlugin( TQObject *tqparent, const char *name,
+KHtmlPlugin::KHtmlPlugin( TQObject *parent, const char *name,
const TQStringList &args )
- : KFilePlugin( tqparent, name, args )
+ : KFilePlugin( parent, name, args )
{
kdDebug(7034) << "html plugin\n";
diff --git a/kfile-plugins/html/kfile_html.h b/kfile-plugins/html/kfile_html.h
index 1f23eae..d226629 100644
--- a/kfile-plugins/html/kfile_html.h
+++ b/kfile-plugins/html/kfile_html.h
@@ -32,7 +32,7 @@ class KHtmlPlugin: public KFilePlugin
TQ_OBJECT
public:
- KHtmlPlugin( TQObject *tqparent, const char *name, const TQStringList& args );
+ KHtmlPlugin( TQObject *parent, const char *name, const TQStringList& args );
virtual bool readInfo( KFileMetaInfo& info, uint what );
};
diff --git a/kfile-plugins/lnk/kfile_lnk.cpp b/kfile-plugins/lnk/kfile_lnk.cpp
index 46e8b9d..804181a 100644
--- a/kfile-plugins/lnk/kfile_lnk.cpp
+++ b/kfile-plugins/lnk/kfile_lnk.cpp
@@ -35,9 +35,9 @@ K_EXPORT_COMPONENT_FACTORY(kfile_lnk, lnkFactory( "kfile_lnk" ))
//--------------------------------------------------------------------------------
-lnkPlugin::lnkPlugin(TQObject *tqparent, const char *name,
+lnkPlugin::lnkPlugin(TQObject *parent, const char *name,
const TQStringList &args)
- : KFilePlugin(tqparent, name, args)
+ : KFilePlugin(parent, name, args)
{
KFileMimeTypeInfo* info = addMimeTypeInfo( "application/x-win-lnk" );
diff --git a/kfile-plugins/lnk/kfile_lnk.h b/kfile-plugins/lnk/kfile_lnk.h
index bc8b832..4ee2eb6 100644
--- a/kfile-plugins/lnk/kfile_lnk.h
+++ b/kfile-plugins/lnk/kfile_lnk.h
@@ -38,7 +38,7 @@ class lnkPlugin: public KFilePlugin
TQ_OBJECT
public:
- lnkPlugin( TQObject *tqparent, const char *name, const TQStringList& args );
+ lnkPlugin( TQObject *parent, const char *name, const TQStringList& args );
virtual bool readInfo( KFileMetaInfo& info, uint what);
};
diff --git a/kfile-plugins/mhtml/kfile_mhtml.cpp b/kfile-plugins/mhtml/kfile_mhtml.cpp
index 895d969..0a07ea9 100644
--- a/kfile-plugins/mhtml/kfile_mhtml.cpp
+++ b/kfile-plugins/mhtml/kfile_mhtml.cpp
@@ -34,9 +34,9 @@ typedef KGenericFactory<mhtmlPlugin> mhtmlFactory;
K_EXPORT_COMPONENT_FACTORY(kfile_mhtml, mhtmlFactory( "kfile_mhtml" ))
-mhtmlPlugin::mhtmlPlugin(TQObject *tqparent, const char *name,
+mhtmlPlugin::mhtmlPlugin(TQObject *parent, const char *name,
const TQStringList &args)
- : KFilePlugin(tqparent, name, args)
+ : KFilePlugin(parent, name, args)
{
KFileMimeTypeInfo* info = addMimeTypeInfo( "application/x-mimearchive" );
KFileMimeTypeInfo::GroupInfo* group = 0L;
diff --git a/kfile-plugins/mhtml/kfile_mhtml.h b/kfile-plugins/mhtml/kfile_mhtml.h
index 217ddf1..199dcfb 100644
--- a/kfile-plugins/mhtml/kfile_mhtml.h
+++ b/kfile-plugins/mhtml/kfile_mhtml.h
@@ -35,7 +35,7 @@ class mhtmlPlugin: public KFilePlugin
TQ_OBJECT
public:
- mhtmlPlugin( TQObject *tqparent, const char *name, const TQStringList& args );
+ mhtmlPlugin( TQObject *parent, const char *name, const TQStringList& args );
virtual bool readInfo( KFileMetaInfo& info, uint what);
private:
TQString decodeRFC2047Phrase(const TQString &msg, bool removeLessGreater=TRUE);
diff --git a/kfile-plugins/txt/kfile_txt.cpp b/kfile-plugins/txt/kfile_txt.cpp
index 47f0d64..fbd1c8b 100644
--- a/kfile-plugins/txt/kfile_txt.cpp
+++ b/kfile-plugins/txt/kfile_txt.cpp
@@ -30,8 +30,8 @@ typedef KGenericFactory<KTxtPlugin> TxtFactory;
K_EXPORT_COMPONENT_FACTORY(kfile_txt, TxtFactory("kfile_txt"))
-KTxtPlugin::KTxtPlugin(TQObject *tqparent, const char *name,
- const TQStringList &args) : KFilePlugin(tqparent, name, args)
+KTxtPlugin::KTxtPlugin(TQObject *parent, const char *name,
+ const TQStringList &args) : KFilePlugin(parent, name, args)
{
kdDebug(7034) << "Text file meta info plugin\n";
makeMimeTypeInfo( "text/plain" );
diff --git a/kfile-plugins/txt/kfile_txt.h b/kfile-plugins/txt/kfile_txt.h
index c765a83..ac07a26 100644
--- a/kfile-plugins/txt/kfile_txt.h
+++ b/kfile-plugins/txt/kfile_txt.h
@@ -30,7 +30,7 @@ class KTxtPlugin: public KFilePlugin
TQ_OBJECT
public:
- KTxtPlugin(TQObject *tqparent, const char *name, const TQStringList& args);
+ KTxtPlugin(TQObject *parent, const char *name, const TQStringList& args);
virtual bool readInfo(KFileMetaInfo& info, uint what);
private: