summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregorio Guidi <greg_g@gentoo.org>2005-03-17 14:35:20 +0000
committerGregorio Guidi <greg_g@gentoo.org>2005-03-17 14:35:20 +0000
commitc3e2578c0a2caaaa6e10ecaeb8d3d2c8bc80de86 (patch)
treeb47c0a2e4a7c0ff87955dd808eae41846ad5ea42 /kde-base/kdeutils
parentRemove unneeded files. (diff)
downloadgentoo-2-c3e2578c0a2caaaa6e10ecaeb8d3d2c8bc80de86.tar.gz
gentoo-2-c3e2578c0a2caaaa6e10ecaeb8d3d2c8bc80de86.tar.bz2
gentoo-2-c3e2578c0a2caaaa6e10ecaeb8d3d2c8bc80de86.zip
Remove unneeded files.
(Portage version: 2.0.51.19)
Diffstat (limited to 'kde-base/kdeutils')
-rw-r--r--kde-base/kdeutils/files/kdeutils-3.2.2-gcc34-compile.patch44
-rw-r--r--kde-base/kdeutils/files/kdeutils-3.2.2-tarfix.patch11
2 files changed, 0 insertions, 55 deletions
diff --git a/kde-base/kdeutils/files/kdeutils-3.2.2-gcc34-compile.patch b/kde-base/kdeutils/files/kdeutils-3.2.2-gcc34-compile.patch
deleted file mode 100644
index 85e58089b1a3..000000000000
--- a/kde-base/kdeutils/files/kdeutils-3.2.2-gcc34-compile.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-diff -udBbr kdeutils-3.2.2/work/kdeutils-3.2.2/ksim/library/themeloader.h kdeutils-3.2.2-fix1/work/kdeutils-3.2.2/ksim/library/themeloader.h
---- kdeutils-3.2.2/work/kdeutils-3.2.2/ksim/library/themeloader.h 2003-09-21 12:42:18.000000000 +0400
-+++ kdeutils-3.2.2-fix1/work/kdeutils-3.2.2/ksim/library/themeloader.h 2004-04-23 23:51:04.293387112 +0400
-@@ -45,6 +45,7 @@
- class Theme
- {
- friend class ThemeLoader;
-+ friend class ThemePrefs;
- public:
- enum PixmapType { KrellPanel = 0, KrellMeter, KrellSlider };
- ~Theme();
-diff -udBbr kdeutils-3.2.2/work/kdeutils-3.2.2/ksim/ksimview.cpp kdeutils-3.2.2-fix1/work/kdeutils-3.2.2/ksim/ksimview.cpp
---- kdeutils-3.2.2/work/kdeutils-3.2.2/ksim/ksimview.cpp 2003-10-26 13:58:52.000000000 +0300
-+++ kdeutils-3.2.2-fix1/work/kdeutils-3.2.2/ksim/ksimview.cpp 2004-04-23 23:33:08.507931360 +0400
-@@ -271,13 +271,14 @@
- ChangedPluginList::ConstIterator it;
- for (it = list.begin(); it != list.end(); ++it) {
- if ((*it).isDifferent()) {
-+ KDesktopFile tempKDesktopFile((*it).filename());
- if ((*it).isEnabled()) { // Go through the added/removed plugins and load/unload them
-- addPlugin(KDesktopFile((*it).filename()));
-+ addPlugin(tempKDesktopFile);
- m_prefDialog->createPage((*it).libName());
- }
- else {
- m_prefDialog->removePage((*it).libName());
-- removePlugin(KDesktopFile((*it).filename()));
-+ removePlugin(tempKDesktopFile);
- }
- }
- }
-@@ -303,8 +304,10 @@
- {
- QStringList locatedFiles = KGlobal::dirs()->findAllResources("data", "ksim/monitors/*.desktop");
- QStringList::ConstIterator it;
-- for (it = locatedFiles.begin(); it != locatedFiles.end(); ++it)
-- addPlugin(KDesktopFile(*it, true));
-+ for (it = locatedFiles.begin(); it != locatedFiles.end(); ++it) {
-+ KDesktopFile tempKDesktopFile(*it, true);
-+ addPlugin(tempKDesktopFile);
-+ }
- }
-
- void KSim::MainView::addPlugin(const KDesktopFile &file, bool force)
diff --git a/kde-base/kdeutils/files/kdeutils-3.2.2-tarfix.patch b/kde-base/kdeutils/files/kdeutils-3.2.2-tarfix.patch
deleted file mode 100644
index 638a531cc584..000000000000
--- a/kde-base/kdeutils/files/kdeutils-3.2.2-tarfix.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- ark/tar.cpp 2004/03/30 00:20:33 1.24.2.1
-+++ ark/tar.cpp 2004/04/16 20:30:28 1.24.2.2
-@@ -81,7 +81,7 @@ TarArch::TarArch( ArkSettings *_settings
-
- m_fileMimeType = _openAsMimeType;
- if ( m_fileMimeType.isNull() )
-- m_fileMimeType = KMimeType::findByFileContent( _filename )->name();
-+ m_fileMimeType = KMimeType::findByPath( _filename )->name();
-
- kdDebug(1601) << "TarArch::TarArch: mimetype is " << m_fileMimeType << endl;
-