summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/browser/genericcontroller.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2014-06-13 17:49:30 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-06-13 17:54:25 +0200
commit529e7619c5258aec91c33dd57b9fa12c3e85cfeb (patch)
tree57c4cb2f16f7cf64a93d9d2d03c3d7db8f23ef86 /dbaccess/source/ui/browser/genericcontroller.cxx
parent2c90156b763d5e90ef916a7f4dd7c7db9241c3cd (diff)
loplugin:staticcall
Change-Id: I78895f3524086e1d00d9e8eafd52e505f786320b
Diffstat (limited to 'dbaccess/source/ui/browser/genericcontroller.cxx')
-rw-r--r--dbaccess/source/ui/browser/genericcontroller.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/dbaccess/source/ui/browser/genericcontroller.cxx b/dbaccess/source/ui/browser/genericcontroller.cxx
index dc5c00d8e59a..c06a5047ccd2 100644
--- a/dbaccess/source/ui/browser/genericcontroller.cxx
+++ b/dbaccess/source/ui/browser/genericcontroller.cxx
@@ -1137,7 +1137,7 @@ namespace
Reference< XFrame > xParentFrame;
if ( _rxFrame.is() )
- xParentFrame = xParentFrame.query( _rxFrame->getCreator() );
+ xParentFrame.set(_rxFrame->getCreator(), css::uno::UNO_QUERY);
// did we find a parent frame? Which is no top-level frame?
if ( xParentFrame.is() && !_rxFrame->isTop() )
// TODO: to prevent framework assertions, re-insert this "isTop" once 98303 is fixed