aboutsummaryrefslogtreecommitdiff
path: root/singleapplication.h
diff options
context:
space:
mode:
authorItay Grudev <itay-grudev@users.noreply.github.com>2018-07-27 04:29:55 +0300
committerGitHub <noreply@github.com>2018-07-27 04:29:55 +0300
commit46b2204a3fee86b61568946896c866894a77bec9 (patch)
tree50461fdf6d2f01201668eff4b33d4fd3dcffa52b /singleapplication.h
parentFix sendmessage (#46) (diff)
downloadsingleapplication-46b2204a3fee86b61568946896c866894a77bec9.tar.xz
Proposed SA changes still containing a race condition (#48)3.0.11a
Diffstat (limited to 'singleapplication.h')
-rw-r--r--singleapplication.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/singleapplication.h b/singleapplication.h
index 33a9898..f123abd 100644
--- a/singleapplication.h
+++ b/singleapplication.h
@@ -1,6 +1,6 @@
// The MIT License (MIT)
//
-// Copyright (c) Itay Grudev 2015 - 2016
+// Copyright (c) Itay Grudev 2015 - 2018
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
@@ -85,7 +85,7 @@ public:
* Usually 4*timeout would be the worst case (fail) scenario.
* @see See the corresponding QAPPLICATION_CLASS constructor for reference
*/
- explicit SingleApplication( int &argc, char *argv[], bool allowSecondary = false, Options options = Mode::User, int timeout = 100 );
+ explicit SingleApplication( int &argc, char *argv[], bool allowSecondary = false, Options options = Mode::User, int timeout = 1000 );
~SingleApplication();
/**