Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
fermi-interlock
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cs
gui
fermi-interlock
Commits
56334378
Commit
56334378
authored
2 years ago
by
Giacomo Strangolino
Browse files
Options
Downloads
Patches
Plain Diff
fixed error in message box
parent
64e7eea5
Branches
master
Tags
1.0.2
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/interlock.cpp
+1
-1
1 addition, 1 deletion
src/interlock.cpp
with
1 addition
and
1 deletion
src/interlock.cpp
+
1
−
1
View file @
56334378
...
...
@@ -74,7 +74,7 @@ void Interlock::setupDb()
db
.
setUserName
(
"firo"
);
db
.
setPassword
(
"firo_password"
);
if
(
!
db
.
open
())
QMessageBox
::
critical
(
0
,
"Error"
,
"Can't establish connection with db
intlkboost on host log"
);
QMessageBox
::
critical
(
0
,
"Error"
,
QString
(
"Can't establish connection with db
\"
%1
\"
on host
\"
%2
\"
"
).
arg
(
db
.
databaseName
()).
arg
(
db
.
hostName
())
);
queryType
=
QueryConfiguration
::
LastDay
;
modulatorModel
=
new
MySqlModel
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment