summaryrefslogtreecommitdiffstats
path: root/filters/karbon/eps
diff options
context:
space:
mode:
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());