diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2014-05-11 10:24:46 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2014-05-11 10:24:46 +0200 |
commit | 8d471d4b373b5d862b5b49814f04ded85e828be9 (patch) | |
tree | 082e45556af72b3d4aded5088b447c3b6150a030 /extensions/source | |
parent | bd596286207adf06936939a3ef8018efc1055591 (diff) |
Fix previous commit (extensions part)
Change-Id: I942cca3639e4d823415da557262e35432a798d04
Diffstat (limited to 'extensions/source')
-rw-r--r-- | extensions/source/bibliography/toolbar.cxx | 2 | ||||
-rw-r--r-- | extensions/source/plugin/base/plmodel.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/bibliography/toolbar.cxx b/extensions/source/bibliography/toolbar.cxx index e8d8349b7ea2..3db37dfeb6d1 100644 --- a/extensions/source/bibliography/toolbar.cxx +++ b/extensions/source/bibliography/toolbar.cxx @@ -172,7 +172,7 @@ void BibTBEditListener::statusChanged(const frame::FeatureStateEvent& rEvt)throw pToolBar->EnableQuery(rEvt.IsEnabled); uno::Any aState=rEvt.State; - if(aState.getValueType()==::cppu::UnoType<OUString>::get()0)) + if(aState.getValueType()== ::cppu::UnoType<OUString>::get()) { OUString aStr = *(OUString*) aState.getValue(); pToolBar->SetQueryString(aStr); diff --git a/extensions/source/plugin/base/plmodel.cxx b/extensions/source/plugin/base/plmodel.cxx index 0ed2b518be39..befe3a9db952 100644 --- a/extensions/source/plugin/base/plmodel.cxx +++ b/extensions/source/plugin/base/plmodel.cxx @@ -71,12 +71,12 @@ static ::com::sun::star::beans::Property aProps[] = ::com::sun::star::beans::Property( OUString::createFromAscii( aMime ), 1, - ::cppu::UnoType<OUString>::get()0), + ::cppu::UnoType<OUString>::get(), ::com::sun::star::beans::PropertyAttribute::BOUND ), ::com::sun::star::beans::Property( OUString::createFromAscii( aCreationURL ), 2, - ::cppu::UnoType<OUString>::get()0), + ::cppu::UnoType<OUString>::get(), ::com::sun::star::beans::PropertyAttribute::BOUND ) }; |