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
Utilities
Konsole
Commits
9a21014e
Commit
9a21014e
authored
Jan 25, 2010
by
Kevin Ottens
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make it build with QT_STRICT_ITERATORS.
svn path=/trunk/KDE/kdebase/apps/konsole/; revision=1079860
parent
762b0eea
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
src/tests/DBusTest.cpp
src/tests/DBusTest.cpp
+4
-4
No files found.
src/tests/DBusTest.cpp
View file @
9a21014e
...
...
@@ -39,8 +39,8 @@ void DBusTest::initTestCase()
// Find all current Konsoles' services running
QStringList
allServices
=
serviceReply
;
for
(
QStringList
::
const_iterator
it
=
allServices
.
b
egin
(),
end
=
allServices
.
e
nd
();
it
!=
end
;
++
it
)
{
for
(
QStringList
::
const_iterator
it
=
allServices
.
constB
egin
(),
end
=
allServices
.
constE
nd
();
it
!=
end
;
++
it
)
{
const
QString
service
=
*
it
;
if
(
service
.
startsWith
(
interfaceName
))
konsoleServices
<<
service
;
...
...
@@ -64,8 +64,8 @@ void DBusTest::initTestCase()
// Find dbus service of above Konsole
allServices
=
serviceReply
;
for
(
QStringList
::
const_iterator
it
=
allServices
.
b
egin
(),
end
=
allServices
.
e
nd
();
it
!=
end
;
++
it
)
{
for
(
QStringList
::
const_iterator
it
=
allServices
.
constB
egin
(),
end
=
allServices
.
constE
nd
();
it
!=
end
;
++
it
)
{
const
QString
service
=
*
it
;
if
(
service
.
startsWith
(
interfaceName
))
if
(
!
konsoleServices
.
contains
(
service
))
...
...
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