WaE: illegal copy-initialization
more than one user-defined conversion has been implicitly applied. So use the other style of initialisation then.
This commit is contained in:
parent
ad44d75e53
commit
6d000e84f6
1 changed files with 2 additions and 2 deletions
|
@ -255,8 +255,8 @@ namespace dbaui
|
|||
aRelations.reserve(5); // just guessing
|
||||
for (; aIter != aEnd ; ++aIter )
|
||||
{
|
||||
uno::Reference<uno::XInterface> xInterface =
|
||||
getParentChild(aIter - pConnectionList->begin());
|
||||
uno::Reference<uno::XInterface> xInterface(
|
||||
getParentChild(aIter - pConnectionList->begin()));
|
||||
aRelations.push_back(xInterface);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue