Kaydet (Commit) d042c3cc authored tarafından Zolnai Tamás's avatar Zolnai Tamás

Fix bug in localize, created by recently changes

Change-Id: I329c72fdca6ade502d4fdedaccc410dd4b7ea874
üst 64cea833
...@@ -403,7 +403,7 @@ bool excludeDirectory(OString const & directory) { ...@@ -403,7 +403,7 @@ bool excludeDirectory(OString const & directory) {
"unxubt", "unxubt",
"wntmsc" }; "wntmsc" };
for (size_t i = 0; i != SAL_N_ELEMENTS(excluded); ++i) { for (size_t i = 0; i != SAL_N_ELEMENTS(excluded); ++i) {
if (directory == excluded[i]) { if (directory.startsWith(excluded[i])) {
return true; return true;
} }
} }
......
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