summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--compilerplugins/clang/constantparam.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/compilerplugins/clang/constantparam.cxx b/compilerplugins/clang/constantparam.cxx
index b2d2ebd67395..59f3d45b92a9 100644
--- a/compilerplugins/clang/constantparam.cxx
+++ b/compilerplugins/clang/constantparam.cxx
@@ -216,7 +216,11 @@ std::string ConstantParam::getCallValue(const Expr* arg)
s = "\"\"";
else if (s == "OString()")
s = "\"\"";
- else if (s == "aEmptyOUStr")
+ else if (s == "aEmptyOUStr") //sw
+ s = "\"\"";
+ else if (s == "EMPTY_OUSTRING")//sc
+ s = "\"\"";
+ else if (s == "GetEmptyOUString()") //sc
s = "\"\"";
return s;
}