public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/kde:master commit in: kde-base/kwin/files/
@ 2012-04-12 19:47 Michael Palimaka
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Palimaka @ 2012-04-12 19:47 UTC (permalink / raw
  To: gentoo-commits

commit:     b5bfb9409fd538daff462ed30796be00e6057d71
Author:     Michael Palimaka <kensington <AT> astralcloak <DOT> net>
AuthorDate: Thu Apr 12 19:45:15 2012 +0000
Commit:     Michael Palimaka <kensington <AT> astralcloak <DOT> net>
CommitDate: Thu Apr 12 19:45:15 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=b5bfb940

[kde-base/kwin] Remove unused patch applied upstream.

(Portage version: 2.1.10.56/git/Linux x86_64, unsigned Manifest commit)

---
 kde-base/kwin/files/kwin-4.7.97-dragndrop.patch |   20 --------------------
 1 files changed, 0 insertions(+), 20 deletions(-)

diff --git a/kde-base/kwin/files/kwin-4.7.97-dragndrop.patch b/kde-base/kwin/files/kwin-4.7.97-dragndrop.patch
deleted file mode 100644
index cab9a2f..0000000
--- a/kde-base/kwin/files/kwin-4.7.97-dragndrop.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git a/kwin/layers.cpp b/kwin/layers.cpp
-index 931b988..31d1c49 100644
---- a/kwin/layers.cpp
-+++ b/kwin/layers.cpp
-@@ -174,6 +174,15 @@ void Workspace::propagateClients(bool propagate_new_clients)
- 
-         newWindowStack << (Window*)client->frameId();
-     }
-+
-+    // when having hidden previews, stack hidden windows below everything else
-+    // (as far as pure X stacking order is concerned), in order to avoid having
-+    // these windows that should be unmapped to interfere with other windows
-+    for (int i = stacking_order.size() - 1; i >= 0; i--) {
-+        if (!stacking_order.at(i)->hiddenPreview())
-+            continue;
-+        newWindowStack << (Window*)stacking_order.at(i)->frameId();
-+    }
-     // TODO isn't it too inefficient to restack always all clients?
-     // TODO don't restack not visible windows?
-     assert(newWindowStack.at(0) == (Window*)supportWindow->winId());



^ permalink raw reply related	[flat|nested] 2+ messages in thread
* [gentoo-commits] proj/kde:master commit in: kde-base/kwin/files/
@ 2014-10-25 16:36 Michael Palimaka
  0 siblings, 0 replies; 2+ messages in thread
From: Michael Palimaka @ 2014-10-25 16:36 UTC (permalink / raw
  To: gentoo-commits

commit:     d52dc091022034c0dbc2293763e1daf466bffd9d
Author:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Sat Oct 25 16:34:48 2014 +0000
Commit:     Michael Palimaka <kensington <AT> gentoo <DOT> org>
CommitDate: Sat Oct 25 16:34:48 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=d52dc091

[kde-base/kwin] Remove unused patch.

Package-Manager: portage-2.2.14

---
 kde-base/kwin/files/kwin-5.0.2-qt54.patch | 37 -------------------------------
 1 file changed, 37 deletions(-)

diff --git a/kde-base/kwin/files/kwin-5.0.2-qt54.patch b/kde-base/kwin/files/kwin-5.0.2-qt54.patch
deleted file mode 100644
index e490a94..0000000
--- a/kde-base/kwin/files/kwin-5.0.2-qt54.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-commit c00c67bf29c10862a973289486a535c8566d5110
-Author: Martin Gräßlin <mgraesslin@kde.org>
-Date:   Wed Sep 3 09:47:21 2014 +0200
-
-    [scripting] Drop qmlRegisterType for QQuickWindow
-    
-    Not needed as one can just do:
-    import QtQuick.Window;
-    
-    This fixes a build problem with Qt 5.4.
-    
-    BUG: 338277
-
-diff --git a/scripting/scripting.cpp b/scripting/scripting.cpp
-index 3bc4358..9dc7bad 100644
---- a/scripting/scripting.cpp
-+++ b/scripting/scripting.cpp
-@@ -620,7 +620,6 @@ void KWin::Scripting::init()
-     qmlRegisterType<KWin::ScriptingClientModel::ClientModelByScreenAndDesktop>("org.kde.kwin", 2, 0, "ClientModelByScreenAndDesktop");
-     qmlRegisterType<KWin::ScriptingClientModel::ClientFilterModel>("org.kde.kwin", 2, 0, "ClientFilterModel");
-     qmlRegisterType<KWin::Client>();
--    qmlRegisterType<QQuickWindow>();
-     qmlRegisterType<QAbstractItemModel>();
- 
-     m_qmlEngine->rootContext()->setContextProperty(QStringLiteral("workspace"), m_workspaceWrapper);
-diff --git a/scripts/desktopchangeosd/contents/ui/osd.qml b/scripts/desktopchangeosd/contents/ui/osd.qml
-index fbf7dd7..e2ff86c 100644
---- a/scripts/desktopchangeosd/contents/ui/osd.qml
-+++ b/scripts/desktopchangeosd/contents/ui/osd.qml
-@@ -18,6 +18,7 @@ You should have received a copy of the GNU General Public License
- along with this program.  If not, see <http://www.gnu.org/licenses/>.
- *********************************************************************/
- import QtQuick 2.0;
-+import QtQuick.Window 2.0;
- import org.kde.plasma.core 2.0 as PlasmaCore;
- import org.kde.plasma.components 2.0 as Plasma;
- import org.kde.kquickcontrolsaddons 2.0 as KQuickControlsAddons;


^ permalink raw reply related	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2014-10-25 16:36 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-04-12 19:47 [gentoo-commits] proj/kde:master commit in: kde-base/kwin/files/ Michael Palimaka
  -- strict thread matches above, loose matches on Subject: below --
2014-10-25 16:36 Michael Palimaka

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox