diff options
author | Miklos Vajna <vmiklos@collabora.com> | 2020-06-16 18:05:50 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.com> | 2020-06-16 18:53:01 +0200 |
commit | c43e62f26f8d51c2ad97f6c93877ce9d3ae9639e (patch) | |
tree | a2658b8635c34241c732b5993a165fddb0468904 /sfx2 | |
parent | cec1d2cb8eb17a28bf418625ea6ea522d6c1c580 (diff) |
vcl: namespace PDFWriterImpl consistently
We had a mix of 'using namespace vcl;' and 'namespace vcl {',
standardize on the later.
Change-Id: I088bb0e0c03f712242427bf6a0b31dd17755b9dc
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/96475
Reviewed-by: Miklos Vajna <vmiklos@collabora.com>
Tested-by: Jenkins
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/qa/uitest/doc/objserv.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sfx2/qa/uitest/doc/objserv.py b/sfx2/qa/uitest/doc/objserv.py index af00590736ea..692d0fb88e17 100644 --- a/sfx2/qa/uitest/doc/objserv.py +++ b/sfx2/qa/uitest/doc/objserv.py @@ -8,9 +8,11 @@ from uitest.framework import UITestCase import org.libreoffice.unotest import pathlib + def get_url_for_data_file(file_name): return pathlib.Path(org.libreoffice.unotest.makeCopyFromTDOC(file_name)).as_uri() + # Test for sfx2/source/doc/objserv.cxx. class Test(UITestCase): |