Kaydet (Commit) e62c0f54 authored tarafından Pedro Giffuni's avatar Pedro Giffuni

Many spelling fixes: some more files.

Attempt to clean up most but certainly not all the spelling
mistakes that found home in OpenOffice through decades.

Did I mention this is more important than translating
German comments? ;)
üst 28206a7c
......@@ -1867,7 +1867,7 @@ EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
____
For VIGRA Computer Vision Library, Version 1.4.0 - built in main/vigra/:
- license indentical to the MIT license
- license identical to the MIT license
The VIGRA License
=================
......
......@@ -20,7 +20,7 @@ Apache projects:
- Apache Portable Runtime Utility Library
- Apache Commons - used by MediaWiki Publisher extension
- Apache Jakarta HttpClient - used by MediaWiki Publisher extension
- Apache Tomcat - used by MediaWiki Piblisher extension
- Apache Tomcat - used by MediaWiki Publisher extension
The notices from these projects are following:
......
......@@ -8,20 +8,20 @@ this file with the notices recommended by them:
___
Notices for CoinMP libary:
The Computational Infrastructure for Operations Research COIN_OR
project developed the CoinMP library (a lightweight API and DLL
for CLP, CBC, and CGL).
It includes and depends on
- CoinUtils: COIN-OR utilities, utilities, data structures, and
linear algebra methods for COIN-OR projects
- CLP: COIN-OR Graph Classes, a collection of network representations
and algorithms
- CBC: COIN-OR Branch and Cut, an LP-based branch-and-cut library
- CGL: Cut Generator Library, a library of cutting-plane generators
The source code of these dependencies which are available under
license EPL can found at
http://www.coin-or.org/download/source/CoinMP/
Notices for CoinMP library:
The Computational Infrastructure for Operations Research COIN_OR
project developed the CoinMP library (a lightweight API and DLL
for CLP, CBC, and CGL).
It includes and depends on
- CoinUtils: COIN-OR utilities, utilities, data structures, and
linear algebra methods for COIN-OR projects
- CLP: COIN-OR Graph Classes, a collection of network representations
and algorithms
- CBC: COIN-OR Branch and Cut, an LP-based branch-and-cut library
- CGL: Cut Generator Library, a library of cutting-plane generators
The source code of these dependencies which are available under
license EPL can found at
http://www.coin-or.org/download/source/CoinMP/
___
......@@ -278,7 +278,7 @@ public:
/**_______________________________________________________________________________________________________
@short get implementation id
@descr This ID is neccessary for UNO-caching. If there no ID, cache is disabled.
@descr This ID is necessary for UNO-caching. If there no ID, cache is disabled.
Another way, cache is enabled.
@seealso XTypeProvider
......
......@@ -544,7 +544,7 @@ void SAL_CALL BaseContainerControl::setVisible ( sal_Bool bVisible ) throw( Runt
// is it a top window ?
if ( !getContext().is() && bVisible )
{
// then show it automaticly
// then show it automatically
createPeer ( Reference< XToolkit > (), Reference< XWindowPeer > () ) ;
}
}
......@@ -622,7 +622,7 @@ void BaseContainerControl::impl_cleanMemory ()
// Delete all items.
for ( nCount = 0; nCount < nMaxCount; ++nCount )
{
// Delete everytime first element of list!
// Delete every time first element of list!
// We count from 0 to MAX, where "MAX=count of items" BEFORE we delete some elements!
// If we use "GetObject ( nCount )" ... it can be, that we have an index greater then count of current elements!
......
......@@ -957,8 +957,8 @@ void BaseControl::impl_paint( sal_Int32 /*nX*/
void BaseControl::impl_recalcLayout( const WindowEvent& /*aEvent*/ )
{
// We need as virtual function to support automaticly resizing of derived controls!
// But we make it not pure virtual because it's not neccessary for all derived classes!
// We need as virtual function to support automatically resizing of derived controls!
// But we make it not pure virtual because it's not necessary for all derived classes!
}
//____________________________________________________________________________________________________________
......
......@@ -51,7 +51,7 @@
//______________________________________________________________________________________________________________
// If you will debug macros of this file ... you must define follow constant!
// Ths switch on another macro AS_DBG_OUT(...), which will print text to "stdout".
// This switch on another macro AS_DBG_OUT(...), which will print text to "stdout".
//#define AS_DBG_SWITCH
......
......@@ -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()
......
......@@ -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 ;
}
......
......@@ -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() ) ;
......
......@@ -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() ) ;
......
......@@ -97,7 +97,7 @@ namespace unocontrols{
class FrameControl : public UNO3_XCONTROLMODEL
, public UNO3_XCONNECTIONPOINTCONTAINER
, public BaseControl // This order is neccessary for right initialization of m_aMutex!
, public BaseControl // This order is necessary for right initialization of m_aMutex!
, public UNO3_OBROADCASTHELPER
, public UNO3_OPROPERTYSETHELPER
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment