Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
Akonadi
Commits
33730662
Commit
33730662
authored
Dec 01, 2021
by
Laurent Montel
😁
Browse files
Use capturedView directly
parent
91ff77b6
Pipeline
#103810
passed with stage
in 5 minutes and 37 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/server/storage/dbconfigmysql.cpp
View file @
33730662
...
...
@@ -580,7 +580,7 @@ int DbConfigMysql::parseCommandLineToolsVersion() const
return
0
;
}
return
(
match
.
captured
Ref
(
1
).
toInt
()
<<
16
)
|
(
match
.
captured
Ref
(
2
).
toInt
()
<<
8
)
|
match
.
captured
Ref
(
3
).
toInt
();
return
(
match
.
captured
View
(
1
).
toInt
()
<<
16
)
|
(
match
.
captured
View
(
2
).
toInt
()
<<
8
)
|
match
.
captured
View
(
3
).
toInt
();
}
bool
DbConfigMysql
::
initializeMariaDBDatabase
(
const
QString
&
confFile
,
const
QString
&
dataDir
)
const
...
...
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