From: "Michael Palimaka" <kensington@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/kde:master commit in: kde-base/plasma-workspace/files/
Date: Sat, 25 Oct 2014 16:32:26 +0000 (UTC) [thread overview]
Message-ID: <1414254731.50c986277686a3ccf4a71bdce793a91f93d2d498.kensington@gentoo> (raw)
commit: 50c986277686a3ccf4a71bdce793a91f93d2d498
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 25 16:32:11 2014 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sat Oct 25 16:32:11 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=50c98627
[kde-base/plasma-workspace] Remove unused patch.
Package-Manager: portage-2.2.14
---
.../files/plasma-workspace-5.0.2-qt54.patch | 82 ----------------------
1 file changed, 82 deletions(-)
diff --git a/kde-base/plasma-workspace/files/plasma-workspace-5.0.2-qt54.patch b/kde-base/plasma-workspace/files/plasma-workspace-5.0.2-qt54.patch
deleted file mode 100644
index 17d016e..0000000
--- a/kde-base/plasma-workspace/files/plasma-workspace-5.0.2-qt54.patch
+++ /dev/null
@@ -1,82 +0,0 @@
-From: Aleix Pol <aleixpol@kde.org>
-Date: Fri, 01 Aug 2014 09:36:43 +0000
-Subject: Fix build in Qt 5.4
-X-Git-Url: http://quickgit.kde.org/?p=plasma-workspace.git&a=commitdiff&h=04cb7ba53ebf8959cb783f62f343795ca4baa69c
----
-Fix build in Qt 5.4
-
-See https://git.reviewboard.kde.org/r/119242/
----
-
-
---- a/containmentactions/applauncher/launch.cpp
-+++ b/containmentactions/applauncher/launch.cpp
-@@ -54,7 +54,7 @@
- {
- foreach (KSycocaEntry::Ptr p, group->entries(true, false, true)) {
- if (p->isType(KST_KService)) {
-- const KService::Ptr service = p;
-+ const KService::Ptr service(static_cast<KService*>(p.data()));
- QAction *action = new QAction(QIcon::fromTheme(service->icon()), service->genericName().isEmpty() ? service->name() : service->genericName(), this);
- connect(action, &QAction::triggered, [action](){
- KService::Ptr service = KService::serviceByStorageId(action->data().toString());
-@@ -67,7 +67,7 @@
- m_actions << action;
- }
- } else if (p->isType(KST_KServiceGroup)) {
-- const KServiceGroup::Ptr service = p;
-+ const KServiceGroup::Ptr service(static_cast<KServiceGroup*>(p.data()));
- if (service->childCount() == 0) {
- continue;
- }
-
-From: Kevin Funk <kfunk@kde.org>
-Date: Wed, 06 Aug 2014 06:23:06 +0000
-Subject: Make compile with Qt 5.4
-X-Git-Url: http://quickgit.kde.org/?p=plasma-workspace.git&a=commitdiff&h=0686e449ac4cf611ac3aa2e0bbf37b79aa172582
----
-Make compile with Qt 5.4
-
-BUG: 337929
----
-
-
---- a/dataengines/apps/appsource.cpp
-+++ b/dataengines/apps/appsource.cpp
-@@ -73,11 +73,11 @@
- QStringList entries;
- foreach (KSycocaEntry::Ptr p, m_group->entries(true, false, true)) {
- if (p->isType(KST_KService)) {
-- const KService::Ptr service = p;
-+ const KService::Ptr service(static_cast<KService*>(p.data()));
- entries << service->storageId();
- } else if (p->isType(KST_KServiceGroup)) {
-- const KServiceGroup::Ptr service = p;
-- entries << service->entryPath();
-+ const KServiceGroup::Ptr serviceGroup(static_cast<KServiceGroup*>(p.data()));
-+ entries << serviceGroup->entryPath();
- } else if (p->isType(KST_KServiceSeparator)) {
- entries << "---";
- } else {
-
---- a/kioslave/applications/kio_applications.cpp
-+++ b/kioslave/applications/kio_applications.cpp
-@@ -155,7 +155,7 @@
-
- foreach (const KSycocaEntry::Ptr &e, grp->entries(true, true)) {
- if (e->isType(KST_KServiceGroup)) {
-- KServiceGroup::Ptr g(e);
-+ KServiceGroup::Ptr g(static_cast<KServiceGroup*>(e.data()));
- QString groupCaption = g->caption();
-
- kDebug() << "ADDING SERVICE GROUP WITH PATH " << g->relPath();
-@@ -177,7 +177,7 @@
- createDirEntry(entry, groupCaption, dirUrl.url(), "inode/directory", g->icon());
-
- } else {
-- KService::Ptr service(e);
-+ KService::Ptr service(static_cast<KService*>(e.data()));
-
- kDebug() << "the entry name is" << service->desktopEntryName()
- << "with path" << service->entryPath();
-
next reply other threads:[~2014-10-25 16:32 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-10-25 16:32 Michael Palimaka [this message]
-- strict thread matches above, loose matches on Subject: below --
2014-05-28 21:20 [gentoo-commits] proj/kde:master commit in: kde-base/plasma-workspace/files/ Johannes Huber
2014-05-26 17:43 Johannes Huber
2014-05-03 20:39 Johannes Huber
2014-04-10 21:07 Johannes Huber
2011-03-28 1:44 Theo Chatzimichos
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1414254731.50c986277686a3ccf4a71bdce793a91f93d2d498.kensington@gentoo \
--to=kensington@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox