summaryrefslogtreecommitdiff
path: root/framework/source/dispatch/dispatchprovider.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2002-05-31 14:40:14 +0000
committerVladimir Glazounov <vg@openoffice.org>2002-05-31 14:40:14 +0000
commit640aab33ce218716fd33414420c3ce3e71f56a44 (patch)
treebe086e3d8a055b75a0fc16a108943aa2fdf30891 /framework/source/dispatch/dispatchprovider.cxx
parentde2ba52a1f6e150070ea906e2267d6998450eafe (diff)
#65293# compiler bug
Diffstat (limited to 'framework/source/dispatch/dispatchprovider.cxx')
-rw-r--r--framework/source/dispatch/dispatchprovider.cxx11
1 files changed, 4 insertions, 7 deletions
diff --git a/framework/source/dispatch/dispatchprovider.cxx b/framework/source/dispatch/dispatchprovider.cxx
index 87660d344d8c..80da11cdc96c 100644
--- a/framework/source/dispatch/dispatchprovider.cxx
+++ b/framework/source/dispatch/dispatchprovider.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: dispatchprovider.cxx,v $
*
- * $Revision: 1.20 $
+ * $Revision: 1.21 $
*
- * last change: $Author: as $ $Date: 2002-05-31 10:17:58 $
+ * last change: $Author: vg $ $Date: 2002-05-31 15:40:14 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -720,12 +720,9 @@ css::uno::Reference< css::frame::XDispatch > DispatchProvider::implts_queryPlugi
nRightFlags &= ~css::frame::FrameSearchFlag::CREATE;
xDispatcher = implts_queryFrameDispatch(xPlugin, aURL, sTargetFrameName, nRightFlags);
- if (
- ( ! xDispatcher.is() ) &&
- ( nSearchFlags & css::frame::FrameSearchFlag::CREATE )
- )
+ if ( !xDispatcher.is() && ( nSearchFlags & css::frame::FrameSearchFlag::CREATE ) )
{
- if (implts_isLoadableContent(aURL))
+ if ( implts_isLoadableContent ( aURL ) )
xDispatcher = implts_getOrCreateDispatchHelper( E_PLUGINDISPATCHER, xPlugin );
}
}