diff options
| author | Peter Penz <[email protected]> | 2009-07-23 06:14:57 +0000 |
|---|---|---|
| committer | Peter Penz <[email protected]> | 2009-07-23 06:14:57 +0000 |
| commit | fddd17030cf1da66415aad51e31575d2a1e2dda0 (patch) | |
| tree | b821504b6bb75533a0b94c9b2744256914245889 /src/panels | |
| parent | 9340a52cf8b310545fdb06f1f5aeec0f6a32d539 (diff) | |
replace list.count() > 0 by !list.isEmpty()
svn path=/trunk/KDE/kdebase/apps/; revision=1001386
Diffstat (limited to 'src/panels')
| -rw-r--r-- | src/panels/information/informationpanelcontent.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/panels/information/informationpanelcontent.cpp b/src/panels/information/informationpanelcontent.cpp index d4c52a047..9f417a379 100644 --- a/src/panels/information/informationpanelcontent.cpp +++ b/src/panels/information/informationpanelcontent.cpp @@ -424,7 +424,7 @@ void InformationPanelContent::configureSettings() ++it; } - if (actions.count() > 0) { + if (!actions.isEmpty()) { popup.addSeparator(); // add all items alphabetically sorted to the popup |
