Kaydet (Commit) 5c0af52f authored tarafından Andrea Gelmini's avatar Andrea Gelmini Kaydeden (comit) Jens Carl

Fix typos

Change-Id: I8d5a8251a01af7cdf9832d98d8a6573b907f8532
Reviewed-on: https://gerrit.libreoffice.org/48683Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarJens Carl <j.carl43@gmx.de>
üst 73ded239
...@@ -160,7 +160,7 @@ int clewInit(const char* path) ...@@ -160,7 +160,7 @@ int clewInit(const char* path)
if (error) if (error)
{ {
// Failure queing atexit, shutdown with error // Failure queueing atexit, shutdown with error
CLCC_DYNLIB_CLOSE(module); CLCC_DYNLIB_CLOSE(module);
module = NULL; module = NULL;
......
...@@ -413,7 +413,7 @@ SAL_DLLPUBLIC sal_Int32 SAL_CALL osl_sendToSocket( ...@@ -413,7 +413,7 @@ SAL_DLLPUBLIC sal_Int32 SAL_CALL osl_sendToSocket(
You can specify a timeout-value in seconds/microseconds that denotes You can specify a timeout-value in seconds/microseconds that denotes
how long the operation will block if the Socket is not ready. how long the operation will block if the Socket is not ready.
@param Socket the Socket to perfom the operation on. @param Socket the Socket to perform the operation on.
@param pTimeout if NULL, the operation will block without a timeout. @param pTimeout if NULL, the operation will block without a timeout.
@retval sal_True if read operations (recv, recvFrom, accept) on the Socket @retval sal_True if read operations (recv, recvFrom, accept) on the Socket
...@@ -428,7 +428,7 @@ SAL_DLLPUBLIC sal_Bool SAL_CALL osl_isReceiveReady( ...@@ -428,7 +428,7 @@ SAL_DLLPUBLIC sal_Bool SAL_CALL osl_isReceiveReady(
You can specify a timeout-value in seconds/microseconds that denotes You can specify a timeout-value in seconds/microseconds that denotes
how long the operation will block if the Socket is not ready. how long the operation will block if the Socket is not ready.
@param Socket the Socket to perfom the operation on. @param Socket the Socket to perform the operation on.
@param pTimeout if NULL, the operation will block without a timeout. Otherwise @param pTimeout if NULL, the operation will block without a timeout. Otherwise
the time define by timeout value. the time define by timeout value.
...@@ -444,7 +444,7 @@ SAL_DLLPUBLIC sal_Bool SAL_CALL osl_isSendReady( ...@@ -444,7 +444,7 @@ SAL_DLLPUBLIC sal_Bool SAL_CALL osl_isSendReady(
You can specify a timeout-value in seconds/microseconds that denotes You can specify a timeout-value in seconds/microseconds that denotes
how long the operation will block if the Socket has no pending OOB data. how long the operation will block if the Socket has no pending OOB data.
@param Socket the Socket to perfom the operation on. @param Socket the Socket to perform the operation on.
@param pTimeout if NULL, the operation will block without a timeout. @param pTimeout if NULL, the operation will block without a timeout.
@retval sal_True if OOB-request operations (recv with appropriate flags) @retval sal_True if OOB-request operations (recv with appropriate flags)
...@@ -456,7 +456,7 @@ SAL_DLLPUBLIC sal_Bool SAL_CALL osl_isExceptionPending( ...@@ -456,7 +456,7 @@ SAL_DLLPUBLIC sal_Bool SAL_CALL osl_isExceptionPending(
const TimeValue* pTimeout); const TimeValue* pTimeout);
/** Shuts down communication on a connected socket. /** Shuts down communication on a connected socket.
@param[in] Socket the Socket to perfom the operation on. @param[in] Socket the Socket to perform the operation on.
@param[in] Direction @param[in] Direction
@parblock @parblock
Direction denotes which end of the socket should be closed: Direction denotes which end of the socket should be closed:
...@@ -799,7 +799,7 @@ SAL_DLLPUBLIC sal_Int32 SAL_CALL osl_getInetPortOfSocketAddr( ...@@ -799,7 +799,7 @@ SAL_DLLPUBLIC sal_Int32 SAL_CALL osl_getInetPortOfSocketAddr(
/** Sets the Port of Addr. /** Sets the Port of Addr.
@param[in] Addr the SocketAddr to perfom the operation on. @param[in] Addr the SocketAddr to perform the operation on.
@param[in] Port is expected in host byte-order. @param[in] Port is expected in host byte-order.
@retval sal_False if Addr is not an inet-addr. @retval sal_False if Addr is not an inet-addr.
*/ */
......
...@@ -82,7 +82,7 @@ namespace sdr ...@@ -82,7 +82,7 @@ namespace sdr
virtual void ClearObjectItem(const sal_uInt16 nWhich = 0) override; virtual void ClearObjectItem(const sal_uInt16 nWhich = 0) override;
// clear single item direct, do not do any notifies or things like that. // clear single item direct, do not do any notifies or things like that.
// Also supports complete deleteion of items when default parameter 0 is used. // Also supports complete deletion of items when default parameter 0 is used.
virtual void ClearObjectItemDirect(const sal_uInt16 nWhich) override; virtual void ClearObjectItemDirect(const sal_uInt16 nWhich) override;
// set complete item set // set complete item set
......
...@@ -108,9 +108,9 @@ public class SCAgent { ...@@ -108,9 +108,9 @@ public class SCAgent {
public void updateInfo() { public void updateInfo() {
//Selects a bad point kw from TaoW points in Library //Selects a bad point kw from TaoW points in Library
int xw = externalLib.tournamentSelection(specComparator, TaoW, false); int xw = externalLib.tournamentSelection(specComparator, TaoW, false);
//Repaces kw with pcurrent_t //Replaces kw with pcurrent_t
externalLib.getSelectedPoint(xw).importPoint(pcurrent_t); externalLib.getSelectedPoint(xw).importPoint(pcurrent_t);
//Repaces pcurrent_t (x(t)) with trailPoint (x(t+1)) //Replaces pcurrent_t (x(t)) with trailPoint (x(t+1))
pcurrent_t.importPoint(trailPoint); pcurrent_t.importPoint(trailPoint);
} }
......
...@@ -87,7 +87,7 @@ public abstract class AbstractReportElementLayoutController ...@@ -87,7 +87,7 @@ public abstract class AbstractReportElementLayoutController
* you'll suffer. * you'll suffer.
* *
* @param flowController the flow controller of the parent. * @param flowController the flow controller of the parent.
* @return the joined layout controller that incorperates all changes from the * @return the joined layout controller that incorporates all changes from the
* delegate. * delegate.
*/ */
public LayoutController join(final FlowController flowController) public LayoutController join(final FlowController flowController)
......
...@@ -131,7 +131,7 @@ public class OfficeDetailLayoutController extends SectionLayoutController ...@@ -131,7 +131,7 @@ public class OfficeDetailLayoutController extends SectionLayoutController
* you'll suffer. * you'll suffer.
* *
* @param flowController the flow controller of the parent. * @param flowController the flow controller of the parent.
* @return the joined layout controller that incorperates all changes from the * @return the joined layout controller that incorporates all changes from the
* delegate. * delegate.
*/ */
@Override @Override
......
...@@ -144,7 +144,7 @@ public class OfficeGroupInstanceSectionLayoutController extends SectionLayoutCon ...@@ -144,7 +144,7 @@ public class OfficeGroupInstanceSectionLayoutController extends SectionLayoutCon
* you'll suffer. * you'll suffer.
* *
* @param flowController the flow controller of the parent. * @param flowController the flow controller of the parent.
* @return the joined layout controller that incorperates all changes from the * @return the joined layout controller that incorporates all changes from the
* delegate. * delegate.
*/ */
@Override @Override
......
...@@ -152,7 +152,7 @@ public class OfficeGroupLayoutController extends SectionLayoutController ...@@ -152,7 +152,7 @@ public class OfficeGroupLayoutController extends SectionLayoutController
* you'll suffer. * you'll suffer.
* *
* @param flowController the flow controller of the parent. * @param flowController the flow controller of the parent.
* @return the joined layout controller that incorperates all changes from the * @return the joined layout controller that incorporates all changes from the
* delegate. * delegate.
*/ */
@Override @Override
......
...@@ -236,7 +236,7 @@ public class OfficeReportLayoutController extends ElementLayoutController ...@@ -236,7 +236,7 @@ public class OfficeReportLayoutController extends ElementLayoutController
* you'll suffer. * you'll suffer.
* *
* @param flowController the flow controller of the parent. * @param flowController the flow controller of the parent.
* @return the joined layout controller that incorperates all changes from the * @return the joined layout controller that incorporates all changes from the
* delegate. * delegate.
*/ */
public LayoutController join(final FlowController flowController) public LayoutController join(final FlowController flowController)
......
...@@ -165,7 +165,7 @@ public class VariablesDeclarationLayoutController ...@@ -165,7 +165,7 @@ public class VariablesDeclarationLayoutController
* you'll suffer. * you'll suffer.
* *
* @param flowController the flow controller of the parent. * @param flowController the flow controller of the parent.
* @return the joined layout controller that incorperates all changes from the * @return the joined layout controller that incorporates all changes from the
* delegate. * delegate.
*/ */
public LayoutController join(final FlowController flowController) public LayoutController join(final FlowController flowController)
......
...@@ -112,13 +112,13 @@ public class ViewForwarder { ...@@ -112,13 +112,13 @@ public class ViewForwarder {
xCell = oSheet.getCellByPosition(0, 2) ; xCell = oSheet.getCellByPosition(0, 2) ;
xCell.setFormula("Cell 2"); xCell.setFormula("Cell 2");
} catch(com.sun.star.lang.IllegalArgumentException e) { } catch(com.sun.star.lang.IllegalArgumentException e) {
System.out.println("Exception ceating relation :"); System.out.println("Exception creating relation :");
fail(e.getMessage()); fail(e.getMessage());
} catch(com.sun.star.lang.WrappedTargetException e) { } catch(com.sun.star.lang.WrappedTargetException e) {
System.out.println("Exception ceating relation :"); System.out.println("Exception creating relation :");
fail(e.getMessage()); fail(e.getMessage());
} catch(com.sun.star.lang.IndexOutOfBoundsException e) { } catch(com.sun.star.lang.IndexOutOfBoundsException e) {
System.out.println("Exception ceating relation :"); System.out.println("Exception creating relation :");
fail(e.getMessage()); fail(e.getMessage());
} }
...@@ -516,13 +516,13 @@ public class ViewForwarder { ...@@ -516,13 +516,13 @@ public class ViewForwarder {
xCell = oSheet.getCellByPosition(0, 2) ; xCell = oSheet.getCellByPosition(0, 2) ;
xCell.setFormula("Cell 2"); xCell.setFormula("Cell 2");
} catch(com.sun.star.lang.IllegalArgumentException e) { } catch(com.sun.star.lang.IllegalArgumentException e) {
System.out.println("Exception ceating relation :"); System.out.println("Exception creating relation :");
fail(e.getMessage()); fail(e.getMessage());
} catch(com.sun.star.lang.WrappedTargetException e) { } catch(com.sun.star.lang.WrappedTargetException e) {
System.out.println("Exception ceating relation :"); System.out.println("Exception creating relation :");
fail(e.getMessage()); fail(e.getMessage());
} catch(com.sun.star.lang.IndexOutOfBoundsException e) { } catch(com.sun.star.lang.IndexOutOfBoundsException e) {
System.out.println("Exception ceating relation :"); System.out.println("Exception creating relation :");
fail(e.getMessage()); fail(e.getMessage());
} }
......
...@@ -106,7 +106,7 @@ public class UnoPkgContainer extends ParcelContainer { ...@@ -106,7 +106,7 @@ public class UnoPkgContainer extends ParcelContainer {
// When all libraries within a package bundle // When all libraries within a package bundle
// ( for this language ) are removed also // ( for this language ) are removed also
// remove the container from its parent // remove the container from its parent
// Otherwise, a container ( with no containees ) // Otherwise, a container ( with no containers )
// representing the uno package bundle will // representing the uno package bundle will
// still exist and so will get displayed // still exist and so will get displayed
if (container.parent() != null) { if (container.parent() != null) {
......
...@@ -81,7 +81,7 @@ namespace sdr ...@@ -81,7 +81,7 @@ namespace sdr
virtual void ClearObjectItem(const sal_uInt16 nWhich = 0) override; virtual void ClearObjectItem(const sal_uInt16 nWhich = 0) override;
// clear single item direct, do not do any notifies or things like that. // clear single item direct, do not do any notifies or things like that.
// Also supports complete deleteion of items when default parameter 0 is used. // Also supports complete deletion of items when default parameter 0 is used.
virtual void ClearObjectItemDirect(const sal_uInt16 nWhich) override; virtual void ClearObjectItemDirect(const sal_uInt16 nWhich) override;
// Set a single item, iterate over hierarchies if necessary. // Set a single item, iterate over hierarchies if necessary.
......
...@@ -42,7 +42,7 @@ class EventQueue ...@@ -42,7 +42,7 @@ class EventQueue
synchronized (maMonitor) synchronized (maMonitor)
{ {
if (mbVerbose) if (mbVerbose)
System.out.println ("queing regular event " + aEvent); System.out.println ("queueing regular event " + aEvent);
maRegularQueue.addLast (aEvent); maRegularQueue.addLast (aEvent);
maMonitor.notify (); maMonitor.notify ();
} }
...@@ -57,7 +57,7 @@ class EventQueue ...@@ -57,7 +57,7 @@ class EventQueue
synchronized (maMonitor) synchronized (maMonitor)
{ {
if (mbVerbose) if (mbVerbose)
System.out.println ("queing disposing event " + aEvent); System.out.println ("queueing disposing event " + aEvent);
maDisposingQueue.addLast (aEvent); maDisposingQueue.addLast (aEvent);
maMonitor.notify (); maMonitor.notify ();
} }
......
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