diff options
author | Gabor Kelemen <kelemeng@ubuntu.com> | 2016-10-06 16:33:55 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2016-10-07 19:49:01 +0000 |
commit | e150e9c45c9ecf519fa76bd055adf8cc26ced91f (patch) | |
tree | fb95b52ddb34720b0a2546d44184e260c142314c /bin | |
parent | 1acf07e3ad9f25f4e0f2f3f3314f913c8544059e (diff) |
Recognize fps/ path
Script was tripping over this valid reference:
From source/text/shared/guide/cmis-remote-files.xhp,
we did not find file fps/uiconfig/ui/remotefilesdialog.ui.
Change-Id: I42b178742f7f168177c525191f54b43d3a5821d6
Reviewed-on: https://gerrit.libreoffice.org/29571
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Andras Timar <andras.timar@collabora.com>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/test-hid-vs-ui.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/test-hid-vs-ui.py b/bin/test-hid-vs-ui.py index a5ee411f23e9..bbb46ae11eb1 100755 --- a/bin/test-hid-vs-ui.py +++ b/bin/test-hid-vs-ui.py @@ -112,6 +112,8 @@ if __name__ == "__main__": uifile = "sfx2" + uifile[3:] elif uifile.startswith("svt"): uifile = "svtools" + uifile[3:] + elif uifile.startswith("fps"): + uifile = "fpicker" + uifile[3:] components = uifile.split('/',1); uifile = components[0] + '/uiconfig/' + components[1] targets[uifile].add(compname.split(':')[0]) |