Kaydet (Commit) e150e9c4 authored tarafından Gabor Kelemen's avatar Gabor Kelemen Kaydeden (comit) Andras Timar

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/29571Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarAndras Timar <andras.timar@collabora.com>
üst 1acf07e3
......@@ -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])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment