diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-19 08:12:17 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-10-19 10:02:39 +0200 |
commit | 2c1b7e8d6a7fa22cb91919238418816671c3a497 (patch) | |
tree | 6f356017d24dffcd25261295ab25a21b738dc835 /test/source | |
parent | ad18bb24d51e4f735085d50c496d28bd637dbb0b (diff) |
clang-tidy readability-container-size-empty
Change-Id: I1df70b7dff5ebb6048f7fc618789faa15ca5d422
Reviewed-on: https://gerrit.libreoffice.org/61967
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'test/source')
-rw-r--r-- | test/source/screenshot_test.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/source/screenshot_test.cxx b/test/source/screenshot_test.cxx index cf205d099044..c20968fd0a88 100644 --- a/test/source/screenshot_test.cxx +++ b/test/source/screenshot_test.cxx @@ -133,7 +133,7 @@ void ScreenshotTest::dumpDialogToPath(VclAbstractDialog& rDialog) { const std::vector<OString> aPageDescriptions(rDialog.getAllPageUIXMLDescriptions()); - if (aPageDescriptions.size()) + if (!aPageDescriptions.empty()) { for (size_t a(0); a < aPageDescriptions.size(); a++) { @@ -157,7 +157,7 @@ void ScreenshotTest::dumpDialogToPath(Dialog& rDialog) { const std::vector<OString> aPageDescriptions(rDialog.getAllPageUIXMLDescriptions()); - if (aPageDescriptions.size()) + if (!aPageDescriptions.empty()) { for (size_t a(0); a < aPageDescriptions.size(); a++) { |