summaryrefslogtreecommitdiffstats
path: root/src/corelib
diff options
context:
space:
mode:
authorDmitry Shachnev <mitya57@gmail.com>2016-04-01 21:28:00 +0200
committerDmitry Shachnev <mitya57@gmail.com>2016-04-11 14:39:16 +0000
commitf156c33c2739d84b97cdedf6ae9568b9cea728d5 (patch)
tree647d5ded4b47cc07179b09af42f8cd89a5bca777 /src/corelib
parente108db5a9ae9ef4495f09630b8d2f0feb1534550 (diff)
dbustray: Implement better detection of indicator-application
We need to do the icon cache trick all desktops using indicator-application, these are not limited to Unity. For example, the default Xubuntu and Lubuntu desktops use indicator-application too. Without this, tray icons will be improperly shown on these desktops. Change-Id: Id397bbe9b594152d7c3a29c36c853e928af7dde4 Reviewed-by: Shawn Rutledge <shawn.rutledge@theqtcompany.com>
Diffstat (limited to 'src/corelib')
-rw-r--r--src/corelib/io/qlockfile_p.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/corelib/io/qlockfile_p.h b/src/corelib/io/qlockfile_p.h
index 48b642abd0..468b4c0d29 100644
--- a/src/corelib/io/qlockfile_p.h
+++ b/src/corelib/io/qlockfile_p.h
@@ -75,7 +75,8 @@ public:
// Returns \c true if the lock belongs to dead PID, or is old.
// The attempt to delete it will tell us if it was really stale or not, though.
bool isApparentlyStale() const;
- static QString processNameByPid(qint64 pid);
+ // used in dbusmenu
+ Q_CORE_EXPORT static QString processNameByPid(qint64 pid);
#ifdef Q_OS_UNIX
static int checkFcntlWorksAfterFlock(const QString &fn);