Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Graphics
digiKam
Commits
b01f1d2d
Commit
b01f1d2d
authored
Mar 21, 2013
by
Gilles Caulier
🗼
Browse files
add debug
parent
84c6913f
Changes
3
Hide whitespace changes
Inline
Side-by-side
utilities/queuemanager/main/queuemgrwindow.cpp
View file @
b01f1d2d
...
...
@@ -1063,6 +1063,9 @@ void QueueMgrWindow::slotAssignQueueSettings(const QString& title)
queue
->
setSettings
(
q
.
qSettings
);
AssignedBatchTools
tools
;
tools
.
m_toolsList
=
q
.
aTools
;
kDebug
()
<<
tools
.
m_toolsList
;
queue
->
setAssignedTools
(
tools
);
d
->
queuePool
->
slotQueueSelected
(
d
->
queuePool
->
currentIndex
());
}
...
...
utilities/queuemanager/manager/batchtoolutils.cpp
View file @
b01f1d2d
...
...
@@ -54,6 +54,17 @@ bool BatchToolSet::operator==(const BatchToolSet& set) const
);
}
QDebug
operator
<<
(
QDebug
dbg
,
const
BatchToolSet
&
s
)
{
dbg
.
nospace
()
<<
"BatchToolSet::"
;
dbg
.
nospace
()
<<
"index: "
<<
s
.
index
<<
", "
;
dbg
.
nospace
()
<<
"version: "
<<
s
.
version
<<
", "
;
dbg
.
nospace
()
<<
"name: "
<<
s
.
name
<<
", "
;
dbg
.
nospace
()
<<
"group: "
<<
s
.
group
<<
", "
;
dbg
.
nospace
()
<<
"settings: "
<<
s
.
settings
;
return
dbg
.
space
();
}
// ---------------------------------------------------------------------------------------------
AssignedBatchTools
::
AssignedBatchTools
()
...
...
utilities/queuemanager/manager/batchtoolutils.h
View file @
b01f1d2d
...
...
@@ -72,6 +72,9 @@ public:
BatchToolSettings
settings
;
};
//! kDebug() stream operator. Writes property @a t to the debug output in a nicely formatted way.
DIGIKAM_EXPORT
QDebug
operator
<<
(
QDebug
dbg
,
const
BatchToolSet
&
s
);
// -------------------------------------------------------------------------------------------------------------
/** An indexed map of batch tools with settings.
...
...
Write
Preview
Supports
Markdown
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