- fix logic error in OnlyShowIn=KDE3 patch
This commit is contained in:
parent
dd96096ef1
commit
f24e3d9a0c
@ -35,7 +35,7 @@ diff -up kdelibs-3.5.9/kio/kio/kservicegroup.cpp.KDE3 kdelibs-3.5.9/kio/kio/kser
|
||||
{
|
||||
- if (config.readListEntry("NotShowIn", ';').contains("KDE"))
|
||||
+ QStringList notShowInList = config.readListEntry("NotShowIn", ';');
|
||||
+ if (! (notShowInList.contains("KDE") || notShowInList.contains("KDE3")))
|
||||
+ if (notShowInList.contains("KDE") || notShowInList.contains("KDE3"))
|
||||
d->m_bNoDisplay = true;
|
||||
}
|
||||
|
||||
|
@ -29,7 +29,7 @@
|
||||
|
||||
Summary: K Desktop Environment 3 - Libraries
|
||||
Version: 3.5.9
|
||||
Release: 16%{?dist}
|
||||
Release: 17%{?dist}
|
||||
|
||||
%if 0%{?fedora} > 8
|
||||
Name: kdelibs3
|
||||
@ -620,6 +620,9 @@ touch --no-create %{_datadir}/icons/crystalsvg 2> /dev/null || :
|
||||
|
||||
|
||||
%changelog
|
||||
* Fri Aug 21 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 3.5.9-17
|
||||
- fix logic error in OnlyShowIn=KDE3 patch
|
||||
|
||||
* Wed Jul 02 2008 Kevin Kofler <Kevin@tigcc.ticalc.org> 3.5.9-16
|
||||
- f9+: use drkonqi from KDE 4 kdebase-runtime in KCrash (#453243)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user