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
Graphics
Krita
Commits
4cfcf5e9
Commit
4cfcf5e9
authored
Mar 12, 2021
by
Agata Cacko
Browse files
Change typedef to using in HistogramDockerWidget
parent
04d8cf6c
Changes
1
Hide whitespace changes
Inline
Side-by-side
plugins/dockers/histogram/histogramdockerwidget.h
View file @
4cfcf5e9
...
...
@@ -32,7 +32,7 @@ class KisCanvas2;
class
KoColorSpace
;
typedef
std
::
vector
<
std
::
vector
<
quint32
>
>
HistVector
;
//Don't use QVector here - it's too slow for this purpose
using
HistVector
=
std
::
vector
<
std
::
vector
<
quint32
>
>
;
//Don't use QVector here - it's too slow for this purpose
struct
HistogramData
{
...
...
@@ -42,7 +42,6 @@ struct HistogramData
HistVector
bins
;
const
KoColorSpace
*
colorSpace
;
};
typedef
QSharedPointer
<
HistogramData
>
HistogramDataSP
;
Q_DECLARE_METATYPE
(
HistogramData
)
...
...
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