~ubuntu-branches/ubuntu/oneiric/plasma-widget-message-indicator/oneiric

« back to all changes in this revision

Viewing changes to debian/patches/kubuntu_02_fix_text_overlap_in_systemtray.diff

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2011-02-08 19:17:43 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20110208191743-72m7p3j7ck9kmvz8
Tags: 0.5.7-0ubuntu1
* New upstream release
* Remove kubuntu_01_fix_translation_domain.diff now upstream
* Remove kubuntu_02_fix_text_overlap_in_systemtray.diff fixed in library

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
This patch should be removed when libindicate-qt 0.2.6 is out. But since we are
2
 
very close to Maverick release I prefer to patch the applet than the library.
3
 
Index: plasma-widget-message-indicator-0.5.6/src/message-indicator.cpp
4
 
===================================================================
5
 
--- plasma-widget-message-indicator-0.5.6.orig/src/message-indicator.cpp        2010-09-30 09:45:36.000000000 +0200
6
 
+++ plasma-widget-message-indicator-0.5.6/src/message-indicator.cpp     2010-09-30 09:46:09.000000000 +0200
7
 
@@ -127,10 +127,10 @@
8
 
     // from "messaging" to "message.<something>"
9
 
     mSourceModel = new ListenerModel(mListener, QRegExp("^messag(e|ing)"));
10
 
     connect(mSourceModel, SIGNAL(rowsInserted(const QModelIndex&, int, int)),
11
 
-            SLOT(slotRowsChanged(const QModelIndex&))
12
 
+            SLOT(slotRowsChanged(const QModelIndex&)), Qt::QueuedConnection
13
 
             );
14
 
     connect(mSourceModel, SIGNAL(rowsRemoved(const QModelIndex&, int, int)),
15
 
-            SLOT(slotRowsChanged(const QModelIndex&))
16
 
+            SLOT(slotRowsChanged(const QModelIndex&)), Qt::QueuedConnection
17
 
             );
18
 
     connect(mSourceModel, SIGNAL(drawAttentionChanged(const QModelIndex&)),
19
 
             SLOT(slotDrawAttentionChanged())