summaryrefslogtreecommitdiffstats
path: root/filters/xsltfilter
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:10:32 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:10:32 -0600
commit3fe437def8063926892bddf2dcc733861308836d (patch)
tree021d66ad023a32bc8ea0074a1ab3d01316aff8b0 /filters/xsltfilter
parent5b8ab149469c8e186ee8b05d90c0103ae722dd85 (diff)
downloadkoffice-3fe437def8063926892bddf2dcc733861308836d.tar.gz
koffice-3fe437def8063926892bddf2dcc733861308836d.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'filters/xsltfilter')
-rw-r--r--filters/xsltfilter/export/xsltexportdia.cc2
-rw-r--r--filters/xsltfilter/export/xsltexportdia.h4
-rw-r--r--filters/xsltfilter/import/xsltimportdia.cc2
-rw-r--r--filters/xsltfilter/import/xsltimportdia.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/filters/xsltfilter/export/xsltexportdia.cc b/filters/xsltfilter/export/xsltexportdia.cc
index 75c28795..76805f9b 100644
--- a/filters/xsltfilter/export/xsltexportdia.cc
+++ b/filters/xsltfilter/export/xsltexportdia.cc
@@ -59,7 +59,7 @@ XSLTExportDia::XSLTExportDia(KoStoreDevice* in, const TQCString &format, TQWidge
kapp->restoreOverrideCursor();
/* Recent files */
- _config = new KConfig("xsltdialog");
+ _config = new TDEConfig("xsltdialog");
_config->setGroup( "XSLT export filter" );
TQString value;
while(i < 10)
diff --git a/filters/xsltfilter/export/xsltexportdia.h b/filters/xsltfilter/export/xsltexportdia.h
index a68b8cc2..9f7785a7 100644
--- a/filters/xsltfilter/export/xsltexportdia.h
+++ b/filters/xsltfilter/export/xsltexportdia.h
@@ -25,7 +25,7 @@
#include <kurl.h>
class KoStoreDevice;
-class KConfig;
+class TDEConfig;
class XSLTExportDia : public XSLTDialog
{
@@ -37,7 +37,7 @@ class XSLTExportDia : public XSLTDialog
/** xslt file current */
KURL _currentFile;
TQCString _format;
- KConfig* _config;
+ TDEConfig* _config;
/** List of the most recent xslt file used. */
TQStringList _recentList;
diff --git a/filters/xsltfilter/import/xsltimportdia.cc b/filters/xsltfilter/import/xsltimportdia.cc
index 29b0ad7b..b2e948cc 100644
--- a/filters/xsltfilter/import/xsltimportdia.cc
+++ b/filters/xsltfilter/import/xsltimportdia.cc
@@ -54,7 +54,7 @@ XSLTImportDia::XSLTImportDia(KoStore* out, const TQCString &format, TQWidget* pa
setCaption(i18n("Import XSLT Configuration"));
/* Recent files */
- _config = new KConfig("xsltdialog");
+ _config = new TDEConfig("xsltdialog");
_config->setGroup( "XSLT import filter" );
TQString value;
while(i < 10)
diff --git a/filters/xsltfilter/import/xsltimportdia.h b/filters/xsltfilter/import/xsltimportdia.h
index 897cc10d..763f4104 100644
--- a/filters/xsltfilter/import/xsltimportdia.h
+++ b/filters/xsltfilter/import/xsltimportdia.h
@@ -37,7 +37,7 @@ class XSLTImportDia : public XSLTDialog
/** xslt file current */
KURL _currentFile;
TQCString _format;
- KConfig* _config;
+ TDEConfig* _config;
/** List of the most recent xslt file used. */
TQStringList _recentList;