diff options
author | Michael Terry <mike@mterry.name> | 2011-02-28 08:58:38 -0500 |
---|---|---|
committer | Michael Terry <mike@mterry.name> | 2011-02-28 08:58:38 -0500 |
commit | 49874d38804ea6cc47d3a241600e4f0a12f9fc1a (patch) | |
tree | beb80910176c797b9d5435688670654b9cd48156 /debian/patches | |
parent | 5f97e91d0017b93369d3ddc7e7354a8f285bf336 (diff) | |
download | libayatana-appindicator-49874d38804ea6cc47d3a241600e4f0a12f9fc1a.tar.gz libayatana-appindicator-49874d38804ea6cc47d3a241600e4f0a12f9fc1a.tar.bz2 libayatana-appindicator-49874d38804ea6cc47d3a241600e4f0a12f9fc1a.zip |
* debian/control, debian/rules:0.2.96-0ubuntu2
- Add quilt
* debian/patches/disconnect-from-theme.patch:
- Fix crash when switching themes by disconnecting a signal from
the theme on dispose. LP: #708188
Diffstat (limited to 'debian/patches')
-rw-r--r-- | debian/patches/disconnect-from-theme.patch | 14 | ||||
-rw-r--r-- | debian/patches/series | 1 |
2 files changed, 15 insertions, 0 deletions
diff --git a/debian/patches/disconnect-from-theme.patch b/debian/patches/disconnect-from-theme.patch new file mode 100644 index 0000000..a60502c --- /dev/null +++ b/debian/patches/disconnect-from-theme.patch @@ -0,0 +1,14 @@ +=== modified file 'src/app-indicator.c' +Index: libappindicator.ubu/src/app-indicator.c +=================================================================== +--- libappindicator.ubu.orig/src/app-indicator.c 2011-02-28 08:35:28.963390000 -0500 ++++ libappindicator.ubu/src/app-indicator.c 2011-02-28 08:46:54.147065973 -0500 +@@ -667,6 +667,8 @@ + priv->connection = NULL; + } + ++ g_signal_handlers_disconnect_by_func(gtk_icon_theme_get_default(), G_CALLBACK(theme_changed_cb), self); ++ + G_OBJECT_CLASS (app_indicator_parent_class)->dispose (object); + return; + } diff --git a/debian/patches/series b/debian/patches/series new file mode 100644 index 0000000..d94f0d1 --- /dev/null +++ b/debian/patches/series @@ -0,0 +1 @@ +disconnect-from-theme.patch |