diff options
author | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-30 22:15:13 +0100 |
---|---|---|
committer | Richard Purdie <rpurdie@linux.intel.com> | 2010-09-30 22:16:10 +0100 |
commit | c0c657bd92911788b96d9670620eabf024453752 (patch) | |
tree | 774a5e2d966d6ee87da17cd063580d5970564d00 /meta-moblin/packages/mutter-moblin/files | |
parent | e71a306f9cac8e30e689d607e2092e11a756ef5d (diff) | |
download | openembedded-core-c0c657bd92911788b96d9670620eabf024453752.tar.gz openembedded-core-c0c657bd92911788b96d9670620eabf024453752.tar.bz2 openembedded-core-c0c657bd92911788b96d9670620eabf024453752.tar.xz openembedded-core-c0c657bd92911788b96d9670620eabf024453752.zip |
Split meta-extras and meta-moblin out of the main repository
Signed-off-by: Richard Purdie <rpurdie@linux.intel.com>
Diffstat (limited to 'meta-moblin/packages/mutter-moblin/files')
-rw-r--r-- | meta-moblin/packages/mutter-moblin/files/88mutter-panelapps.sh | 3 | ||||
-rw-r--r-- | meta-moblin/packages/mutter-moblin/files/background-tile.png | bin | 194031 -> 0 bytes | |||
-rw-r--r-- | meta-moblin/packages/mutter-moblin/files/startup-notify.patch | 51 |
3 files changed, 0 insertions, 54 deletions
diff --git a/meta-moblin/packages/mutter-moblin/files/88mutter-panelapps.sh b/meta-moblin/packages/mutter-moblin/files/88mutter-panelapps.sh deleted file mode 100644 index 1df0d0648..000000000 --- a/meta-moblin/packages/mutter-moblin/files/88mutter-panelapps.sh +++ /dev/null @@ -1,3 +0,0 @@ -for APP in /usr/libexec/moblin-panel-*; do - $APP & -done diff --git a/meta-moblin/packages/mutter-moblin/files/background-tile.png b/meta-moblin/packages/mutter-moblin/files/background-tile.png Binary files differdeleted file mode 100644 index b71a55b67..000000000 --- a/meta-moblin/packages/mutter-moblin/files/background-tile.png +++ /dev/null diff --git a/meta-moblin/packages/mutter-moblin/files/startup-notify.patch b/meta-moblin/packages/mutter-moblin/files/startup-notify.patch deleted file mode 100644 index 72ad42cd9..000000000 --- a/meta-moblin/packages/mutter-moblin/files/startup-notify.patch +++ /dev/null @@ -1,51 +0,0 @@ -Index: git/src/mnb-drop-down.c -=================================================================== ---- git.orig/src/mnb-drop-down.c 2009-06-09 16:38:46.000000000 +0100 -+++ git/src/mnb-drop-down.c 2009-06-09 16:41:21.000000000 +0100 -@@ -68,6 +68,37 @@ - gboolean hide_toolbar : 1; - }; - -+ -+#include <dbus/dbus.h> -+ -+static gboolean -+emit_loaded_signal (gpointer user_data) -+{ -+ DBusError error = DBUS_ERROR_INIT; -+ DBusConnection *conn; -+ DBusMessage *msg; -+ -+ conn = dbus_bus_get (DBUS_BUS_SYSTEM, &error); -+ if (!conn) { -+ g_printerr ("Cannot connect to system bus: %s", error.message); -+ dbus_error_free (&error); -+ return FALSE; -+ } -+ -+ msg = dbus_message_new_signal ("/", "org.matchbox_project.desktop", "Loaded"); -+ -+ dbus_connection_send (conn, msg, NULL); -+ dbus_message_unref (msg); -+ -+ /* Flush explicitly because we're too lazy to integrate DBus into the main -+ loop. We're only sending a signal, so if we got as far as here it's -+ unlikely to block. */ -+ dbus_connection_flush (conn); -+ dbus_connection_unref (conn); -+ -+ return FALSE; -+} -+ - static void - mnb_drop_down_get_property (GObject *object, guint property_id, - GValue *value, GParamSpec *pspec) -@@ -137,6 +168,8 @@ - - g_signal_emit (actor, dropdown_signals[SHOW_COMPLETED], 0); - g_object_unref (actor); -+ -+ g_idle_add (emit_loaded_signal, NULL); - } - - static void |