diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:40:58 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:40:58 -0600 |
commit | 5f444a9ea966b68991cef44d2711378ef9ff406d (patch) | |
tree | 07f06257228437d61e24ef7ebe530d365c4ee54c /kpackage/debInterface.cpp | |
parent | 91f62a5883c34899da0137e71f74ceb5c17fc799 (diff) | |
download | tdeadmin-5f444a9ea966b68991cef44d2711378ef9ff406d.tar.gz tdeadmin-5f444a9ea966b68991cef44d2711378ef9ff406d.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'kpackage/debInterface.cpp')
-rw-r--r-- | kpackage/debInterface.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/kpackage/debInterface.cpp b/kpackage/debInterface.cpp index 74ef515..70acb23 100644 --- a/kpackage/debInterface.cpp +++ b/kpackage/debInterface.cpp @@ -275,7 +275,7 @@ packageInfo *DEB::getUPackageInfo( const TQString &name) packageInfo *pki = 0; TQString s = "dpkg --info "; - s += KProcess::quote(name); + s += TDEProcess::quote(name); TQStringList list = kpty->run(s); for ( TQStringList::Iterator it = list.begin(); it != list.end(); ++it ) { @@ -566,7 +566,7 @@ TQString DEB::install(int installFlags, TQPtrList<packageInfo> *p, for (i = p->first(); i!= 0; i = p->next()) { TQString fname = i->fetchFilename(); if (!fname.isEmpty()) { - packs += KProcess::quote(fname); + packs += TDEProcess::quote(fname); packs += " "; } } |