diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:43:14 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-24 13:43:14 -0600 |
commit | 79b21d47bce1ee428affc97534cd8b257232a871 (patch) | |
tree | 0df1fa0109d9f2bcef932eda8b5c25b2e06669ed /kdesktop/init.cc | |
parent | 9a898d493f493adbc404f7223043c85f3817472b (diff) | |
download | tdebase-79b21d47bce1ee428affc97534cd8b257232a871.tar.gz tdebase-79b21d47bce1ee428affc97534cd8b257232a871.zip |
Rename KGlobal, KProcess, and KClipboard to avoid conflicts with KDE4
Diffstat (limited to 'kdesktop/init.cc')
-rw-r--r-- | kdesktop/init.cc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/kdesktop/init.cc b/kdesktop/init.cc index 81bce942c..27990245c 100644 --- a/kdesktop/init.cc +++ b/kdesktop/init.cc @@ -101,9 +101,9 @@ static void copyDirectoryFile(const TQString &fileName, const TQString& dir, boo { if (force || !TQFile::exists(dir + "/.directory")) { TQString cmd = "cp "; - cmd += KProcess::quote(locate("data", TQString("kdesktop/") + fileName)); + cmd += TDEProcess::quote(locate("data", TQString("kdesktop/") + fileName)); cmd += " "; - cmd += KProcess::quote(dir+"/.directory"); + cmd += TDEProcess::quote(dir+"/.directory"); system( TQFile::encodeName(cmd) ); } } @@ -111,15 +111,15 @@ static void copyDirectoryFile(const TQString &fileName, const TQString& dir, boo static void copyFile( const TQString& src, const TQString& dest ) { TQCString cmd = "cp "; - cmd += TQFile::encodeName(KProcess::quote(src)); + cmd += TQFile::encodeName(TDEProcess::quote(src)); cmd += " "; - cmd += TQFile::encodeName(KProcess::quote(dest)); + cmd += TQFile::encodeName(TDEProcess::quote(dest)); system( cmd ); } static TQString realDesktopPath() { - TQString desktopPath = KGlobalSettings::desktopPath(); + TQString desktopPath = TDEGlobalSettings::desktopPath(); if (kdesktop_screen_number != 0) { TQString dn = "Desktop"; dn += TQString::number(kdesktop_screen_number); @@ -140,7 +140,7 @@ static void copyDesktopLinks() return; TQStringList list = - KGlobal::dirs()->findAllResources("appdata", "DesktopLinks/*", false, true); + TDEGlobal::dirs()->findAllResources("appdata", "DesktopLinks/*", false, true); TQString desktopPath = realDesktopPath(); @@ -197,15 +197,15 @@ void testLocalInstallation() // Do not force copying that one (it would lose the icon positions) copyDirectoryFile("directory.desktop", desktopPath, false); - testDir( KGlobalSettings::autostartPath() ); + testDir( TDEGlobalSettings::autostartPath() ); // we force the copying in case of a new release, to install new translations.... - copyDirectoryFile("directory.autostart", KGlobalSettings::autostartPath(), newRelease); + copyDirectoryFile("directory.autostart", TDEGlobalSettings::autostartPath(), newRelease); if (emptyDesktop) copyDesktopLinks(); // Take care of creating or updating trash.desktop - const TQString trashDir = KGlobal::dirs()->localxdgdatadir() + "Trash"; + const TQString trashDir = TDEGlobal::dirs()->localxdgdatadir() + "Trash"; const bool firstTimeWithNewTrash = !TQFile::exists( trashDir ); const TQString trashDesktopPath = desktopPath + "/trash.desktop"; const bool trashDesktopExists = TQFile::exists( trashDesktopPath ); |