summaryrefslogtreecommitdiffstats
path: root/mandriva/2010.2/kdebase/kdebase-3.5.7-kdesktop_firstrun.patch
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2020-01-30 12:06:23 +0900
committerMichele Calgaro <[email protected]>2020-01-30 12:06:23 +0900
commit40be1ebef7a688235d4730561908a02f10505385 (patch)
treeab182bf59496abaee2ddbf03d3e910bd37ae57e8 /mandriva/2010.2/kdebase/kdebase-3.5.7-kdesktop_firstrun.patch
parentc169e89296c2d885faa5cdeba21dc35b10b2f583 (diff)
downloadtde-packaging-40be1ebef7a688235d4730561908a02f10505385.tar.gz
tde-packaging-40be1ebef7a688235d4730561908a02f10505385.zip
Removed obsolete Mandriva 2010 packaging files.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'mandriva/2010.2/kdebase/kdebase-3.5.7-kdesktop_firstrun.patch')
-rw-r--r--mandriva/2010.2/kdebase/kdebase-3.5.7-kdesktop_firstrun.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/mandriva/2010.2/kdebase/kdebase-3.5.7-kdesktop_firstrun.patch b/mandriva/2010.2/kdebase/kdebase-3.5.7-kdesktop_firstrun.patch
deleted file mode 100644
index 52ed43b0c..000000000
--- a/mandriva/2010.2/kdebase/kdebase-3.5.7-kdesktop_firstrun.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- kdebase-3.5.7/kdesktop/init.cc.kdesktop_firstrun 2007-09-26 10:15:58.000000000 -0300
-+++ kdebase-3.5.7/kdesktop/init.cc 2007-09-26 09:32:43.000000000 -0300
-@@ -87,7 +87,9 @@ static bool testDir( const TQString &_nam
- else // exists already
- {
- closedir( dp );
-- return false;
-+ KConfig cfg("kdesktoprc");
-+ cfg.setGroup("General");
-+ return cfg.readBoolEntry("FirstRun", true);
- }
- }
-
-@@ -202,7 +204,12 @@ void testLocalInstallation()
- copyDirectoryFile("directory.autostart", KGlobalSettings::autostartPath(), newRelease);
-
- if (emptyDesktop)
-- copyDesktopLinks();
-+ {
-+ copyDesktopLinks();
-+ KConfig cfg("kdesktoprc");
-+ cfg.setGroup("General");
-+ cfg.writeEntry("FirstRun", false);
-+ }
-
- // Take care of creating or updating trash.desktop
- const TQString trashDir = KGlobal::dirs()->localxdgdatadir() + "Trash";