Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Utilities
Kate
Commits
5cfd3b76
Commit
5cfd3b76
authored
Aug 27, 2022
by
Christoph Cullmann
🍨
Browse files
more explicit int conversion and warnings fixes
parent
42e78937
Pipeline
#223279
passed with stage
in 5 minutes and 19 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
addons/gdbplugin/configview.cpp
View file @
5cfd3b76
...
...
@@ -32,12 +32,6 @@
#include
<json_utils.h>
#ifdef WIN32
static
const
QLatin1Char
pathSeparator
(
';'
);
#else
static
const
QLatin1Char
pathSeparator
(
':'
);
#endif
constexpr
int
CONFIG_VERSION
=
5
;
const
static
QString
F_TARGET
=
QStringLiteral
(
"target"
);
const
static
QString
F_DEBUGGER
=
QStringLiteral
(
"debuggerKey"
);
...
...
addons/lspclient/gotosymboldialog.cpp
View file @
5cfd3b76
...
...
@@ -95,7 +95,7 @@ public:
// add file name to the text we are going to display
auto
file
=
QFileInfo
(
symbol
.
fileUrl
.
toLocalFile
()).
fileName
();
auto
textLength
=
text
.
length
();
int
textLength
=
text
.
length
();
text
+=
QStringLiteral
(
" "
)
+
file
;
// file name
...
...
Write
Preview
Supports
Markdown
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!
Cancel
Please
register
or
sign in
to comment