summaryrefslogtreecommitdiffstats
path: root/languages/csharp
diff options
context:
space:
mode:
Diffstat (limited to 'languages/csharp')
-rw-r--r--languages/csharp/csharpdoc.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/languages/csharp/csharpdoc.cpp b/languages/csharp/csharpdoc.cpp
index cd32d03e..c0ee2ed5 100644
--- a/languages/csharp/csharpdoc.cpp
+++ b/languages/csharp/csharpdoc.cpp
@@ -37,10 +37,10 @@ void CSharpdocProtocol::get(const KURL& url)
if (l[0] == "functions") {
plain = true;
cmd += "-t -f ";
- cmd += KProcess::quote(l[1]);
+ cmd += TDEProcess::quote(l[1]);
} else if (l[0] == "faq") {
cmd += "-u -q ";
- cmd += KProcess::quote(l[1]);
+ cmd += TDEProcess::quote(l[1]);
cmd += " | pod2html";
} else {
TQCString errstr(i18n("The only existing directories are functions and faq.").local8Bit());
@@ -117,7 +117,7 @@ extern "C" {
int kdemain(int argc, char **argv)
{
TDEInstance instance( "kio_csharpdoc" );
- KGlobal::locale()->setMainCatalogue("tdevelop");
+ TDEGlobal::locale()->setMainCatalogue("tdevelop");
if (argc != 4) {
fprintf(stderr, "Usage: kio_csharpdoc protocol domain-socket1 domain-socket2\n");