Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
PIM
KPimTextEdit
Commits
370cd389
Commit
370cd389
authored
Aug 04, 2020
by
Laurent Montel
😁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix clazy warning
parent
249feddb
Pipeline
#29652
passed with stage
in 25 minutes and 9 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
src/composer-ng/richtextcomposerimages.h
src/composer-ng/richtextcomposerimages.h
+1
-1
src/grantleebuilder/markupdirector.cpp
src/grantleebuilder/markupdirector.cpp
+1
-1
No files found.
src/composer-ng/richtextcomposerimages.h
View file @
370cd389
...
...
@@ -50,7 +50,7 @@ struct ImageWithName {
};
typedef
QSharedPointer
<
ImageWithName
>
ImageWithNamePtr
;
typedef
Q
List
<
ImageWithNamePtr
>
ImageWithNameList
;
typedef
Q
Vector
<
ImageWithNamePtr
>
ImageWithNameList
;
typedef
QVector
<
QSharedPointer
<
EmbeddedImage
>
>
ImageList
;
class
KPIMTEXTEDIT_EXPORT
RichTextComposerImages
:
public
QObject
...
...
src/grantleebuilder/markupdirector.cpp
View file @
370cd389
...
...
@@ -908,7 +908,7 @@ QList<int> MarkupDirector::sortOpeningOrder(QSet<int> openingOrder,
// be out of order.
// The rest of the block is traversed until there are no more elements to
// sort, or the end is reached.
while
(
openingOrder
.
count
())
{
while
(
!
openingOrder
.
isEmpty
())
{
if
(
!
it
.
atEnd
())
{
it
++
;
...
...
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