diff options
-rw-r--r-- | chart2/source/view/main/VLegendSymbolFactory.cxx | 6 | ||||
-rw-r--r-- | connectivity/source/drivers/mork/MResultSet.cxx | 4 | ||||
-rw-r--r-- | cui/uiconfig/ui/cellalignment.ui | 2 | ||||
-rw-r--r-- | dbaccess/source/ui/tabledesign/FieldDescriptions.cxx | 2 | ||||
-rw-r--r-- | wizards/source/tutorials/ShowInfoDialog.xba | 8 | ||||
-rw-r--r-- | xmloff/source/chart/MultiPropertySetHandler.hxx | 2 |
6 files changed, 12 insertions, 12 deletions
diff --git a/chart2/source/view/main/VLegendSymbolFactory.cxx b/chart2/source/view/main/VLegendSymbolFactory.cxx index 4579d45a6b7c..ee8a0df63088 100644 --- a/chart2/source/view/main/VLegendSymbolFactory.cxx +++ b/chart2/source/view/main/VLegendSymbolFactory.cxx @@ -76,7 +76,7 @@ void getPropNamesAndValues( const Reference< beans::XPropertySet >& xProp, } } -void lcl_setPropetiesToShape( +void lcl_setPropertiesToShape( const Reference< beans::XPropertySet > & xProp, const Reference< drawing::XShape > & xShape, ::chart::VLegendSymbolFactory::tPropertyType ePropertyType, @@ -130,7 +130,7 @@ Reference< drawing::XShape > VLegendSymbolFactory::createSymbol( awt::Point( 0, rEntryKeyAspectRatio.Height/2 )); if( xLine.is()) { - lcl_setPropetiesToShape( xLegendEntryProperties, xLine, ePropertyType, rEntryKeyAspectRatio ); + lcl_setPropertiesToShape( xLegendEntryProperties, xLine, ePropertyType, rEntryKeyAspectRatio ); } Reference< drawing::XShape > xSymbol; @@ -178,7 +178,7 @@ Reference< drawing::XShape > VLegendSymbolFactory::createSymbol( awt::Point( rEntryKeyAspectRatio.Width/2-nSize/2, rEntryKeyAspectRatio.Height/2-nSize/2 )); if( xShape.is() ) { - lcl_setPropetiesToShape( xLegendEntryProperties, xShape, ePropertyType, awt::Size(0,0) ); // PROP_TYPE_FILLED_SERIES ); + lcl_setPropertiesToShape( xLegendEntryProperties, xShape, ePropertyType, awt::Size(0,0) ); // PROP_TYPE_FILLED_SERIES ); } } else // eStyle == LegendSymbolStyle_BOX diff --git a/connectivity/source/drivers/mork/MResultSet.cxx b/connectivity/source/drivers/mork/MResultSet.cxx index e0211c3f0993..35c57fced63e 100644 --- a/connectivity/source/drivers/mork/MResultSet.cxx +++ b/connectivity/source/drivers/mork/MResultSet.cxx @@ -964,13 +964,13 @@ void OResultSet::fillRowData() OSL_ENSURE(m_xColumns.is(), "Need the Columns!!"); OSQLColumns::Vector::const_iterator aIter = m_xColumns->get().begin(); - const OUString sProprtyName = OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_NAME); + const OUString sPropertyName = OMetaConnection::getPropMap().getNameByIndex(PROPERTY_ID_NAME); OUString sName; m_aAttributeStrings.clear(); m_aAttributeStrings.reserve(m_xColumns->get().size()); for (sal_Int32 i = 1; aIter != m_xColumns->get().end();++aIter, i++) { - (*aIter)->getPropertyValue(sProprtyName) >>= sName; + (*aIter)->getPropertyValue(sPropertyName) >>= sName; SAL_INFO( "connectivity.mork", "Query Columns : (" << i << ") " << sName); m_aAttributeStrings.push_back( sName ); diff --git a/cui/uiconfig/ui/cellalignment.ui b/cui/uiconfig/ui/cellalignment.ui index 4be6eb319aba..d5e8b7388018 100644 --- a/cui/uiconfig/ui/cellalignment.ui +++ b/cui/uiconfig/ui/cellalignment.ui @@ -363,7 +363,7 @@ </object> </child> <child type="label"> - <object class="GtkLabel" id="labelPropeties"> + <object class="GtkLabel" id="labelProperties"> <property name="visible">True</property> <property name="can_focus">False</property> <property name="label" translatable="yes">Properties</property> diff --git a/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx b/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx index 52cb0595527b..9476b33912a0 100644 --- a/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx +++ b/dbaccess/source/ui/tabledesign/FieldDescriptions.cxx @@ -97,7 +97,7 @@ OFieldDescription::OFieldDescription(const Reference< XPropertySet >& xAffectedC ,m_bIsCurrency(false) ,m_bHidden(false) { - OSL_ENSURE(xAffectedCol.is(),"PropetySet can not be null!"); + OSL_ENSURE(xAffectedCol.is(),"PropertySet can not be null!"); if ( xAffectedCol.is() ) { if ( _bUseAsDest ) diff --git a/wizards/source/tutorials/ShowInfoDialog.xba b/wizards/source/tutorials/ShowInfoDialog.xba index defde111cbbf..e1da4b596237 100644 --- a/wizards/source/tutorials/ShowInfoDialog.xba +++ b/wizards/source/tutorials/ShowInfoDialog.xba @@ -24,7 +24,7 @@ Dim oWnd3 As Object Dim oDoc as Object Sub ShowInfoMain - prop() = GetShowInfoPropeties() + prop() = GetShowInfoProperties() Init(prop(0).Value, prop(1).Value, prop(2).Value, prop(3).Value, prop(4).Value, prop(5).Value, prop(6).Value, prop(7).Value, prop(8).Value) End Sub @@ -103,7 +103,7 @@ Sub Init(tFieldText As String, windowX, windowY, windowWidth, windowHeight, tFie End Sub -Function GetShowInfoPropeties() +Function GetShowInfoProperties() stepText = GetStepTitle() Dim Properties(8) As new com.sun.star.beans.NamedValue Properties(0).Name = "ShowInfoDialogText" @@ -124,7 +124,7 @@ Function GetShowInfoPropeties() Properties(7).Value = 190 Properties(8).Name = "TFieldHeight" Properties(8).Value = 50 - GetShowInfoPropeties = Properties() + GetShowInfoProperties = Properties() End Function Sub setShowInfoText() @@ -319,4 +319,4 @@ Function addShapeToDrawDoc(oPage as Object, nPosX, nPosY as Integer, oType As St addShapeToDrawDoc() = oShape End Function -</script:module>
\ No newline at end of file +</script:module> diff --git a/xmloff/source/chart/MultiPropertySetHandler.hxx b/xmloff/source/chart/MultiPropertySetHandler.hxx index 7996bfa1e3ee..f9cffea53ea6 100644 --- a/xmloff/source/chart/MultiPropertySetHandler.hxx +++ b/xmloff/source/chart/MultiPropertySetHandler.hxx @@ -28,7 +28,7 @@ #include <com/sun/star/beans/XMultiPropertySet.hpp> /** @descr MultiPropertySetHandler handles the two slightly different - interfaces XPropertySet and XMultiPorpertySet for accessing + interfaces XPropertySet and XMultiPropertySet for accessing properties of an object. It uses the classes PropertyWrapperBase and the template |