Kaydet (Commit) 836b74ae authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Fix ctor check

Change-Id: Ie261d5412c510c045b4d93a6bf1a3d4cf4371897
üst a0b4f816
......@@ -1626,7 +1626,8 @@ void StringConstant::handleOUStringCtor(
if (e3 == nullptr) {
return;
}
if (!loplugin::DeclCheck(e3->getConstructor()).Function("OUString").Class("OUString").Namespace("rtl").GlobalNamespace())
if (!loplugin::DeclCheck(e3->getConstructor()).MemberFunction()
.Class("OUString").Namespace("rtl").GlobalNamespace())
{
return;
}
......
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