diff options
author | Jonas Suhr Christensen <jsc@umbraculum.org> | 2014-04-03 09:37:36 +0200 |
---|---|---|
committer | Jonas Suhr Christensen <jsc@umbraculum.org> | 2014-04-03 09:37:36 +0200 |
commit | fe7be822dac7c1d06f836d18b63b7781b1146395 (patch) | |
tree | 1b233c39db3b847aa91e4994827a52604d5c036b | |
parent | 915324ed1a65df1dfd6ede548459a44a426cf01d (diff) |
Including unistd.h fixing call to unknown function usleep().
-rw-r--r-- | dgedit/mainwindow.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/dgedit/mainwindow.cc b/dgedit/mainwindow.cc index b4ef076..a4d4af8 100644 --- a/dgedit/mainwindow.cc +++ b/dgedit/mainwindow.cc @@ -40,6 +40,8 @@ #include <QMenuBar> #include <QFileDialog> +#include <unistd.h> + #include "canvastool.h" #include "canvastoolthreshold.h" #include "canvastoollisten.h" |