summaryrefslogtreecommitdiff
path: root/UnoControls/source/controls
diff options
context:
space:
mode:
Diffstat (limited to 'UnoControls/source/controls')
-rw-r--r--UnoControls/source/controls/OConnectionPointContainerHelper.cxx2
-rw-r--r--UnoControls/source/controls/progressbar.cxx2
-rw-r--r--UnoControls/source/controls/progressmonitor.cxx6
-rw-r--r--UnoControls/source/controls/statusindicator.cxx6
4 files changed, 8 insertions, 8 deletions
diff --git a/UnoControls/source/controls/OConnectionPointContainerHelper.cxx b/UnoControls/source/controls/OConnectionPointContainerHelper.cxx
index f19fc6d2f507..4291285234c6 100644
--- a/UnoControls/source/controls/OConnectionPointContainerHelper.cxx
+++ b/UnoControls/source/controls/OConnectionPointContainerHelper.cxx
@@ -170,7 +170,7 @@ void SAL_CALL OConnectionPointContainerHelper::unadvise( const Type&
//______________________________________________________________________________________________________________
// public but impl method!
-// Is neccessary to get container member at OConnectionPoint-instance.
+// Is necessary to get container member at OConnectionPoint-instance.
//______________________________________________________________________________________________________________
OMultiTypeInterfaceContainerHelper& OConnectionPointContainerHelper::impl_getMultiTypeContainer()
diff --git a/UnoControls/source/controls/progressbar.cxx b/UnoControls/source/controls/progressbar.cxx
index 998c7d6d5816..d754265ef0b6 100644
--- a/UnoControls/source/controls/progressbar.cxx
+++ b/UnoControls/source/controls/progressbar.cxx
@@ -275,7 +275,7 @@ void SAL_CALL ProgressBar::setRange ( sal_Int32 nMin, sal_Int32 nMax ) throw( Ru
}
else
{
- // Change Min and Max automaticly
+ // Change Min and Max automatically
m_nMinRange = nMax ;
m_nMaxRange = nMin ;
}
diff --git a/UnoControls/source/controls/progressmonitor.cxx b/UnoControls/source/controls/progressmonitor.cxx
index ec15912cfe1a..9a5e9ec1131b 100644
--- a/UnoControls/source/controls/progressmonitor.cxx
+++ b/UnoControls/source/controls/progressmonitor.cxx
@@ -100,13 +100,13 @@ ProgressMonitor::ProgressMonitor( const Reference< XMultiServiceFactory >& xFact
addControl ( OUString::createFromAscii( CONTROLNAME_BUTTON ) , xRef_Button ) ;
addControl ( OUString::createFromAscii( CONTROLNAME_PROGRESSBAR ) , xRef_ProgressBar ) ;
- // FixedText make it automaticly visible by himself ... but not the progressbar !!!
+ // FixedText make it automatically visible by himself ... but not the progressbar !!!
// it must be set explicitly
Reference< XWindow > xWindowRef_ProgressBar( m_xProgressBar, UNO_QUERY );
xWindowRef_ProgressBar->setVisible( sal_True );
// Reset to defaults !!!
- // (progressbar take automaticly its own defaults)
+ // (progressbar take automatically its own defaults)
m_xButton->setLabel ( OUString::createFromAscii( DEFAULT_BUTTONLABEL ) ) ;
m_xTopic_Top->setText ( OUString::createFromAscii( DEFAULT_TOPIC ) ) ;
m_xText_Top->setText ( OUString::createFromAscii( DEFAULT_TEXT ) ) ;
@@ -641,7 +641,7 @@ void SAL_CALL ProgressMonitor::setPosSize ( sal_Int32 nX, sal_Int32 nY, sal_Int3
// calc new layout for controls
impl_recalcLayout () ;
// clear background (!)
- // [Childs was repainted in "recalcLayout" by setPosSize() automaticly!]
+ // [Childs was repainted in "recalcLayout" by setPosSize() automatically!]
getPeer()->invalidate(2);
// and repaint the control
impl_paint ( 0, 0, impl_getGraphicsPeer() ) ;
diff --git a/UnoControls/source/controls/statusindicator.cxx b/UnoControls/source/controls/statusindicator.cxx
index a9a65f0c6cda..06663719ed18 100644
--- a/UnoControls/source/controls/statusindicator.cxx
+++ b/UnoControls/source/controls/statusindicator.cxx
@@ -76,12 +76,12 @@ StatusIndicator::StatusIndicator( const Reference< XMultiServiceFactory >& xFact
// ... and add controls to basecontainercontrol!
addControl( OUString::createFromAscii( CONTROLNAME_TEXT ), xTextControl );
addControl( OUString::createFromAscii( CONTROLNAME_PROGRESSBAR ), xProgressControl );
- // FixedText make it automaticly visible by himself ... but not the progressbar !!!
+ // FixedText make it automatically visible by himself ... but not the progressbar !!!
// it must be set explicitly
Reference< XWindow > xProgressWindow( m_xProgressBar, UNO_QUERY );
xProgressWindow->setVisible( sal_True );
// Reset to defaults !!!
- // (progressbar take automaticly its own defaults)
+ // (progressbar take automatically its own defaults)
m_xText->setText( OUString::createFromAscii( DEFAULT_TEXT ) );
--m_refCount ;
@@ -404,7 +404,7 @@ void SAL_CALL StatusIndicator::setPosSize ( sal_Int32 nX, sal_Int32 nY, sal_Int3
// calc new layout for controls
impl_recalcLayout ( WindowEvent(static_cast< OWeakObject* >(this),0,0,nWidth,nHeight,0,0,0,0) ) ;
// clear background (!)
- // [Childs was repainted in "recalcLayout" by setPosSize() automaticly!]
+ // [Childs was repainted in "recalcLayout" by setPosSize() automatically!]
getPeer()->invalidate(2);
// and repaint the control
impl_paint ( 0, 0, impl_getGraphicsPeer() ) ;