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

unoidl: Use appropriate OUString functions on string constants

Change-Id: I6ff256e091770d67f98b1b6b8d447a22fd720d4e
üst 2171c3dd
...@@ -135,7 +135,7 @@ void convertToCurrentName( ...@@ -135,7 +135,7 @@ void convertToCurrentName(
void clearCurrentState(unoidl::detail::SourceProviderScannerData * data) { void clearCurrentState(unoidl::detail::SourceProviderScannerData * data) {
assert(data != 0); assert(data != 0);
data->currentName = ""; data->currentName.clear();
data->publishedContext = false; data->publishedContext = false;
} }
...@@ -542,7 +542,7 @@ Found findEntity( ...@@ -542,7 +542,7 @@ Found findEntity(
break; break;
} }
n = "." + typeNucleus; n = "." + typeNucleus;
typeNucleus = "", typeNucleus.clear();
e = findEntity_(data, &n); e = findEntity_(data, &n);
continue; continue;
} }
......
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