summaryrefslogtreecommitdiffstats
path: root/filters/karbon/eps
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:23:24 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-24 13:23:24 -0600
commit5b8ab149469c8e186ee8b05d90c0103ae722dd85 (patch)
treefb31321c80b12ee8e2237bdcf8c228fe44e67772 /filters/karbon/eps
parentfe33d391dd7c9da0f83e779344a17e2e445b70a8 (diff)
downloadkoffice-5b8ab149469c8e186ee8b05d90c0103ae722dd85.tar.gz
koffice-5b8ab149469c8e186ee8b05d90c0103ae722dd85.zip
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'filters/karbon/eps')
-rw-r--r--filters/karbon/eps/epsexport.cc2
-rw-r--r--filters/karbon/eps/epsimport.cc6
2 files changed, 4 insertions, 4 deletions
diff --git a/filters/karbon/eps/epsexport.cc b/filters/karbon/eps/epsexport.cc
index 8696e6a3..023074da 100644
--- a/filters/karbon/eps/epsexport.cc
+++ b/filters/karbon/eps/epsexport.cc
@@ -74,7 +74,7 @@ public:
protected:
virtual void setupTranslations( void )
{
- KGlobal::locale()->insertCatalogue( "kofficefilters" );
+ TDEGlobal::locale()->insertCatalogue( "kofficefilters" );
}
};
diff --git a/filters/karbon/eps/epsimport.cc b/filters/karbon/eps/epsimport.cc
index 19742a4d..72bb1334 100644
--- a/filters/karbon/eps/epsimport.cc
+++ b/filters/karbon/eps/epsimport.cc
@@ -42,7 +42,7 @@ public:
protected:
virtual void setupTranslations( void )
{
- KGlobal::locale()->insertCatalogue( "kofficefilters" );
+ TDEGlobal::locale()->insertCatalogue( "kofficefilters" );
}
};
@@ -98,11 +98,11 @@ EpsImport::convert( const TQCString& from, const TQCString& to )
// Build ghostscript call to convert ps/eps -> ai:
TQString command(
"gs -q -P- -dBATCH -dNOPAUSE -dSAFER -dPARANOIDSAFER -dNODISPLAY ps2ai.ps ");
- command += KProcess::quote(input);
+ command += TDEProcess::quote(input);
command += " | ";
command += sedFilter;
command += " > ";
- command += KProcess::quote(m_chain->outputFile());
+ command += TDEProcess::quote(m_chain->outputFile());
tqDebug ("command to execute is (%s)", TQFile::encodeName(command).data());