summaryrefslogtreecommitdiffstats
path: root/kdeprint/slave/kio_print.cpp
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:28:57 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2011-11-06 02:28:57 -0600
commit7574a7287e2e121c9d5c91a5f4ea38c5b3ae2a04 (patch)
treeb7c6396f4f7fe78dcd49424bff707e977541de18 /kdeprint/slave/kio_print.cpp
parent66c0fa70796c1989a9f3adb0c5c0ad799ade48ca (diff)
downloadtdebase-7574a7287e2e121c9d5c91a5f4ea38c5b3ae2a04.tar.gz
tdebase-7574a7287e2e121c9d5c91a5f4ea38c5b3ae2a04.zip
Additional kde to tde renaming
Diffstat (limited to 'kdeprint/slave/kio_print.cpp')
-rw-r--r--kdeprint/slave/kio_print.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/kdeprint/slave/kio_print.cpp b/kdeprint/slave/kio_print.cpp
index ebb6b859f..d8bb4cf6e 100644
--- a/kdeprint/slave/kio_print.cpp
+++ b/kdeprint/slave/kio_print.cpp
@@ -1,6 +1,6 @@
/*
* This file is part of the KDE libraries
- * Copyright (c) 2001 Michael Goffioul <kdeprint@swing.be>
+ * Copyright (c) 2001 Michael Goffioul <tdeprint@swing.be>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Library General Public
@@ -18,11 +18,11 @@
**/
#include "kio_print.h"
-#include <kdeprint/kmprinter.h>
-#include <kdeprint/kmmanager.h>
-#include <kdeprint/kmjobmanager.h>
-#include <kdeprint/kmjob.h>
-#include <kdeprint/driver.h>
+#include <tdeprint/kmprinter.h>
+#include <tdeprint/kmmanager.h>
+#include <tdeprint/kmjobmanager.h>
+#include <tdeprint/kmjob.h>
+#include <tdeprint/driver.h>
#include <tqfile.h>
#include <tqtextstream.h>
@@ -755,7 +755,7 @@ void KIO_Print::showSpecialInfo(KMPrinter *printer)
bool KIO_Print::loadTemplate(const TQString& filename, TQString& buffer)
{
- TQFile f(locate("data", TQString::tqfromLatin1("kdeprint/template/")+filename));
+ TQFile f(locate("data", TQString::tqfromLatin1("tdeprint/template/")+filename));
if (f.exists() && f.open(IO_ReadOnly))
{
TQTextStream t(&f);
@@ -789,12 +789,12 @@ void KIO_Print::showData(const TQString& pathname)
/**
* Locate a data in this order:
- * - $KDEDIR/share/apps/kdeprint/template/
+ * - $KDEDIR/share/apps/tdeprint/template/
* - as a desktop icon
*/
TQString KIO_Print::locateData(const TQString& item)
{
- TQString path = locate("data", "kdeprint/template/"+item);
+ TQString path = locate("data", "tdeprint/template/"+item);
if (path.isEmpty())
path = KGlobal::iconLoader()->iconPath(item, KIcon::Desktop, true);
return path;