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
Marco Bubke
flatpak-qt-creator
Commits
09d5ec7d
Commit
09d5ec7d
authored
Apr 02, 2009
by
dt
Browse files
Fix quoting in git commit, fixes committing for me on windows
Reviewed-By: Ossi
parent
bcd279a1
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/git/commitdata.cpp
View file @
09d5ec7d
...
...
@@ -63,9 +63,9 @@ QString GitSubmitEditorPanelData::authorString() const
QString
rc
;
rc
+=
QLatin1Char
(
'"'
);
rc
+=
author
;
rc
+=
QLatin1String
(
" <"
);
rc
+=
QLatin1String
(
"
\"
<"
);
rc
+=
email
;
rc
+=
QLatin1
String
(
">
\"
"
);
rc
+=
QLatin1
Char
(
'>'
);
return
rc
;
}
...
...
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