aboutsummaryrefslogtreecommitdiff
path: root/dev-tools
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2016-04-25 11:21:32 -0400
committerKen Moore <moorekou@gmail.com>2016-04-25 11:21:32 -0400
commit57c6e1f84d8c2add8e7cc04d5028be523fac27f3 (patch)
treea16dda1eb04281d92cf5835b9d64308450c4168f /dev-tools
parentMerge branch 'master' of github.com:pcbsd/lumina (diff)
downloadlumina-57c6e1f84d8c2add8e7cc04d5028be523fac27f3.tar.gz
lumina-57c6e1f84d8c2add8e7cc04d5028be523fac27f3.tar.bz2
lumina-57c6e1f84d8c2add8e7cc04d5028be523fac27f3.zip
Commit a few random changes on my dev system - just to sync up with the repo.
Diffstat (limited to 'dev-tools')
-rw-r--r--dev-tools/systray-tester/main.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/dev-tools/systray-tester/main.cpp b/dev-tools/systray-tester/main.cpp
index 309ab4cb..ea631894 100644
--- a/dev-tools/systray-tester/main.cpp
+++ b/dev-tools/systray-tester/main.cpp
@@ -2,6 +2,8 @@
#include <QSystemTrayIcon>
#include "Trayapp.h"
+#include <unistd.h>
+
int main(int argc, char *argv[]) {
QApplication a(argc, argv);
bgstack15