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
Kipi Plugins
Commits
ff1972b0
Commit
ff1972b0
authored
Apr 26, 2012
by
Gilles Caulier
🗼
Browse files
constify
parent
8a5dc255
Changes
2
Hide whitespace changes
Inline
Side-by-side
expoblending/manager/actionthread.cpp
View file @
ff1972b0
...
...
@@ -129,7 +129,7 @@ public:
}
};
ActionThread
::
ActionThread
(
QObject
*
parent
)
ActionThread
::
ActionThread
(
QObject
*
const
parent
)
:
QThread
(
parent
),
d
(
new
ActionThreadPriv
)
{
qRegisterMetaType
<
ActionData
>
();
...
...
@@ -798,7 +798,7 @@ bool ActionThread::startEnfuse(const KUrl::List& inUrls, KUrl& outUrl,
return
false
;
}
QString
ActionThread
::
getProcessError
(
KProcess
*
proc
)
const
QString
ActionThread
::
getProcessError
(
KProcess
*
const
proc
)
const
{
if
(
!
proc
)
return
QString
();
...
...
expoblending/manager/actionthread.h
View file @
ff1972b0
...
...
@@ -98,7 +98,7 @@ private:
const
EnfuseSettings
&
settings
,
const
QString
&
enfusePath
,
QString
&
errors
);
QString
getProcessError
(
KProcess
*
proc
)
const
;
QString
getProcessError
(
KProcess
*
const
proc
)
const
;
float
getAverageSceneLuminance
(
const
KUrl
&
url
);
bool
getXmpRational
(
const
char
*
xmpTagName
,
long
&
num
,
long
&
den
,
KPMetadata
&
meta
);
...
...
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