Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Kontact
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PIM
Kontact
Commits
641a0eed
Commit
641a0eed
authored
Jun 09, 2017
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make it compile on windows
parent
6dc0a38b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
2 deletions
+7
-2
src/mainwindow.cpp
src/mainwindow.cpp
+7
-2
No files found.
src/mainwindow.cpp
View file @
641a0eed
...
...
@@ -30,9 +30,9 @@
#include "kontactconfiguredialog.h"
using
namespace
Kontact
;
#ifndef WIN32
#include <unistd.h>
#endif
#include <Libkdepim/BroadcastStatus>
#include <Libkdepim/ProgressStatusBarWidget>
#include <Libkdepim/StatusbarProgressWidget>
...
...
@@ -227,7 +227,12 @@ void MainWindow::waitForKSycoca()
// System Configuration database necessary for further
// Kontact startup
qCDebug
(
KONTACT_LOG
)
<<
"Waiting for KSycoca"
;
#ifdef WIN32
Sleep
(
1000
);
#else
sleep
(
1
);
#endif
++
i
;
}
// This should only happen if the distribution is broken
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment