Kaydet (Commit) ca7f62c8 authored tarafından Julien Nabet's avatar Julien Nabet

Typos

Change-Id: Ic03fb2ee6470eac6034be13908dd9ec92cf175b6
üst 46ce8354
...@@ -454,10 +454,10 @@ public class EventTest { ...@@ -454,10 +454,10 @@ public class EventTest {
} }
} }
/** /**
* This method cklicks into the middel of a document. It uses Accessibility * This method clicks into the middle of a document. It uses Accessibility
* to get the document and query for its position and its range to calculate * to get the document and query for its position and its range to calculate
* the middle. This values was used for <CODE>Robot</CODE> Class. This * the middle. This values was used for <CODE>Robot</CODE> Class. This
* Robot class is able to move the mouse and to cklick a mouse button * Robot class is able to move the mouse and to click a mouse button
* @see java.awt.Robot * @see java.awt.Robot
*/ */
private void clickIntoDoc(){ private void clickIntoDoc(){
...@@ -484,7 +484,7 @@ public class EventTest { ...@@ -484,7 +484,7 @@ public class EventTest {
Robot rob = new Robot(); Robot rob = new Robot();
int x = point.X + (rect.Width / 2); int x = point.X + (rect.Width / 2);
int y = point.Y + (rect.Height / 2); int y = point.Y + (rect.Height / 2);
System.out.println("try to klick into the middle of the document"); System.out.println("try to click into the middle of the document");
rob.mouseMove(x, y); rob.mouseMove(x, y);
rob.mousePress(InputEvent.BUTTON1_MASK); rob.mousePress(InputEvent.BUTTON1_MASK);
rob.mouseRelease(InputEvent.BUTTON1_MASK); rob.mouseRelease(InputEvent.BUTTON1_MASK);
...@@ -520,7 +520,7 @@ public class EventTest { ...@@ -520,7 +520,7 @@ public class EventTest {
*/ */
private interface EventTriggerType{ private interface EventTriggerType{
/** klick the mouse into the scroll bar*/ /** click the mouse into the scroll bar*/
int MOUSE_KLICK_INTO_DOC = 1; int MOUSE_KLICK_INTO_DOC = 1;
/** write some text into a spread sheet*/ /** write some text into a spread sheet*/
......
...@@ -298,7 +298,7 @@ public class CheckContextMenuInterceptor ...@@ -298,7 +298,7 @@ public class CheckContextMenuInterceptor
point = window.getLocationOnScreen(); point = window.getLocationOnScreen();
Rectangle rect = window.getBounds(); Rectangle rect = window.getBounds();
System.out.println("klick mouse button..."); System.out.println("click mouse button...");
try try
{ {
Robot rob = new Robot(); Robot rob = new Robot();
......
...@@ -310,9 +310,9 @@ public class RecoveryTest extends ComplexTestCase { ...@@ -310,9 +310,9 @@ public class RecoveryTest extends ComplexTestCase {
* office is started after a crash. It waits until the "next>>" button is enabled * office is started after a crash. It waits until the "next>>" button is enabled
* and click it then to continue. * and click it then to continue.
* @param expectedDocumentCount the amount of documents which must be displayed in the recovery dialog * @param expectedDocumentCount the amount of documents which must be displayed in the recovery dialog
* @param recover If the documenst should be recoverd this variable must be true. If it is fasle * @param recover If the document should be recovered this variable must be true. If it is false
* the recovery process was stopped and the button cancel was klicked. * the recovery process was stopped and the button cancel was clicked.
* @param cancel If the recovery is fifnished, this parameter desicdes to klick the "Next" button * @param cancel If the recovery is finished, this parameter decides to click the "Next" button
* or the click cancel. If the value is true, the cancel button was clicked. * or the click cancel. If the value is true, the cancel button was clicked.
*/ */
private void handleRecoveryDialogAtRestart(int expectedDocumentCount, boolean recover, boolean cancel){ private void handleRecoveryDialogAtRestart(int expectedDocumentCount, boolean recover, boolean cancel){
......
...@@ -421,7 +421,7 @@ ...@@ -421,7 +421,7 @@
<group oor:name="DefaultObjectSize"> <group oor:name="DefaultObjectSize">
<!-- OldPath: --> <!-- OldPath: -->
<!-- OldLocation: --> <!-- OldLocation: -->
<!-- UIHints: Default size for newly created objects when using CTRL-Return or CTRL-Klick --> <!-- UIHints: Default size for newly created objects when using CTRL-Return or CTRL-Click -->
<info> <info>
<desc>Defines the default size of newly created objects using CTRL-Return or CTRL-Click at a object creating Button</desc> <desc>Defines the default size of newly created objects using CTRL-Return or CTRL-Click at a object creating Button</desc>
<label>Default Object Size</label> <label>Default Object Size</label>
......
...@@ -655,7 +655,7 @@ ...@@ -655,7 +655,7 @@
<group oor:name="DefaultObjectSize"> <group oor:name="DefaultObjectSize">
<!-- OldPath: --> <!-- OldPath: -->
<!-- OldLocation: --> <!-- OldLocation: -->
<!-- UIHints: Default size for newly created objects when using CTRL-Return or CTRL-Klick --> <!-- UIHints: Default size for newly created objects when using CTRL-Return or CTRL-Click -->
<info> <info>
<desc>Defines the default size of newly created objects using CTRL-Return or CTRL-Click at a object creating Button.</desc> <desc>Defines the default size of newly created objects using CTRL-Return or CTRL-Click at a object creating Button.</desc>
<label>Default Object Size</label> <label>Default Object Size</label>
......
...@@ -174,7 +174,7 @@ public class _XUserInputInterception extends MultiMethodTest { ...@@ -174,7 +174,7 @@ public class _XUserInputInterception extends MultiMethodTest {
} }
/** /**
* This test adds two different mouse klick listener to the object. <p> * This test adds two different mouse click listener to the object. <p>
* *
* Has <b> OK </b> if no exception is thrown. * Has <b> OK </b> if no exception is thrown.
*/ */
...@@ -194,7 +194,7 @@ public class _XUserInputInterception extends MultiMethodTest { ...@@ -194,7 +194,7 @@ public class _XUserInputInterception extends MultiMethodTest {
/** /**
* The test requires <CODE>addMouseClickHandler()</CODE> which adds two key listener. * The test requires <CODE>addMouseClickHandler()</CODE> which adds two key listener.
* Then one of them will be removed. In a second thread a mouse klick event is released * Then one of them will be removed. In a second thread a mouse click event is released
* by the <CODE>robot</CODE> class.<p> * by the <CODE>robot</CODE> class.<p>
* Has <b> OK </b> status if only one of the listener are triggered. <p> * Has <b> OK </b> status if only one of the listener are triggered. <p>
* The following method tests are to be completed successfully before : * The following method tests are to be completed successfully before :
...@@ -452,10 +452,10 @@ public class _XUserInputInterception extends MultiMethodTest { ...@@ -452,10 +452,10 @@ public class _XUserInputInterception extends MultiMethodTest {
} }
} }
/** /**
* This method cklicks into the middel of a document. It uses Accessibility * This method clicks into the middle of a document. It uses Accessibility
* to get the document and query for its position and its range to calculate * to get the document and query for its position and its range to calculate
* the middle. This values was used for <CODE>Robot</CODE> Class. This * the middle. This values was used for <CODE>Robot</CODE> Class. This
* Robot class is able to move the mouse and to cklick a mouse button * Robot class is able to move the mouse and to click a mouse button
* @see java.awt.Robot * @see java.awt.Robot
*/ */
private void clickIntoDoc(){ private void clickIntoDoc(){
...@@ -483,7 +483,7 @@ public class _XUserInputInterception extends MultiMethodTest { ...@@ -483,7 +483,7 @@ public class _XUserInputInterception extends MultiMethodTest {
Robot rob = new Robot(); Robot rob = new Robot();
int x = point.X + (rect.Width / 2); int x = point.X + (rect.Width / 2);
int y = point.Y + (rect.Height / 2); int y = point.Y + (rect.Height / 2);
log.println("try to klick into the middle of the document"); log.println("try to click into the middle of the document");
rob.mouseMove(x, y); rob.mouseMove(x, y);
rob.mousePress(InputEvent.BUTTON1_MASK); rob.mousePress(InputEvent.BUTTON1_MASK);
rob.mouseRelease(InputEvent.BUTTON1_MASK); rob.mouseRelease(InputEvent.BUTTON1_MASK);
...@@ -519,7 +519,7 @@ public class _XUserInputInterception extends MultiMethodTest { ...@@ -519,7 +519,7 @@ public class _XUserInputInterception extends MultiMethodTest {
*/ */
private interface EventTriggerType{ private interface EventTriggerType{
/** klick the mouse into the scroll bar*/ /** click the mouse into the scroll bar*/
int MOUSE_KLICK_INTO_DOC = 1; int MOUSE_KLICK_INTO_DOC = 1;
/** write some text into a spread sheet*/ /** write some text into a spread sheet*/
......
...@@ -88,7 +88,7 @@ public class _XEnhancedMouseClickBroadcaster extends MultiMethodTest { ...@@ -88,7 +88,7 @@ public class _XEnhancedMouseClickBroadcaster extends MultiMethodTest {
Point point = window.getLocationOnScreen(); Point point = window.getLocationOnScreen();
Rectangle rect = window.getBounds(); Rectangle rect = window.getBounds();
log.println("klick mouse button..."); log.println("click mouse button...");
try { try {
Robot rob = new Robot(); Robot rob = new Robot();
int x = point.X + (rect.Width / 2)+50; int x = point.X + (rect.Width / 2)+50;
......
...@@ -167,7 +167,7 @@ public class _XContextMenuInterception extends MultiMethodTest { ...@@ -167,7 +167,7 @@ public class _XContextMenuInterception extends MultiMethodTest {
point = window.getLocationOnScreen(); point = window.getLocationOnScreen();
Rectangle rect = window.getBounds(); Rectangle rect = window.getBounds();
log.println("klick mouse button..."); log.println("click mouse button...");
try { try {
Robot rob = new Robot(); Robot rob = new Robot();
int x = point.X + (rect.Width / 2); int x = point.X + (rect.Width / 2);
......
...@@ -513,7 +513,7 @@ void FuText::ImpSetAttributesForNewTextObject(SdrTextObj* pTxtObj) ...@@ -513,7 +513,7 @@ void FuText::ImpSetAttributesForNewTextObject(SdrTextObj* pTxtObj)
aSet.Put(makeSdrTextAutoGrowWidthItem(true)); aSet.Put(makeSdrTextAutoGrowWidthItem(true));
aSet.Put(makeSdrTextAutoGrowHeightItem(false)); aSet.Put(makeSdrTextAutoGrowHeightItem(false));
// Set defaults for vertical klick-n'drag text object, pool defaults are: // Set defaults for vertical click-n'drag text object, pool defaults are:
// SdrTextVertAdjustItem: SDRTEXTVERTADJUST_TOP // SdrTextVertAdjustItem: SDRTEXTVERTADJUST_TOP
// SdrTextHorzAdjustItem: SDRTEXTHORZADJUST_BLOCK // SdrTextHorzAdjustItem: SDRTEXTHORZADJUST_BLOCK
// Analog to that: // Analog to that:
...@@ -796,10 +796,10 @@ bool FuText::MouseButtonUp(const MouseEvent& rMEvt) ...@@ -796,10 +796,10 @@ bool FuText::MouseButtonUp(const MouseEvent& rMEvt)
{ {
// Here, all items which need to be different from pool default need to be set // Here, all items which need to be different from pool default need to be set
// again on the newly created text object. // again on the newly created text object.
// Since this is a simple klick text object, it is first created, then SetVertical() // Since this is a simple click text object, it is first created, then SetVertical()
// is used, then ImpSetAttributesForNewTextObject is called and then the object is // is used, then ImpSetAttributesForNewTextObject is called and then the object is
// deleted again since not the minimum drag distance was travelled. Then, a new // deleted again since not the minimum drag distance was travelled. Then, a new
// klick text object is created and thus all that stuff needs to be set again here. // click text object is created and thus all that stuff needs to be set again here.
// Before using the new object the vertical writing mode // Before using the new object the vertical writing mode
// needs to be set. This is done here at the OutlinerParaObject // needs to be set. This is done here at the OutlinerParaObject
......
...@@ -2272,7 +2272,7 @@ namespace svgio ...@@ -2272,7 +2272,7 @@ namespace svgio
if(maFontSize.isSet()) if(maFontSize.isSet())
{ {
// #122524# Handle Unit_percent realtive to parent FontSize (see SVG1.1 // #122524# Handle Unit_percent realtive to parent FontSize (see SVG1.1
// spec 10.10 Font selection properties \91font-size\92, lastline (klick 'normative // spec 10.10 Font selection properties \91font-size\92, lastline (click 'normative
// definition of the property') // definition of the property')
if(Unit_percent == maFontSize.getUnit()) if(Unit_percent == maFontSize.getUnit())
{ {
......
...@@ -859,7 +859,7 @@ void TabBar::MouseMove( const MouseEvent& rMEvt ) ...@@ -859,7 +859,7 @@ void TabBar::MouseMove( const MouseEvent& rMEvt )
void TabBar::MouseButtonDown( const MouseEvent& rMEvt ) void TabBar::MouseButtonDown( const MouseEvent& rMEvt )
{ {
// Only terminate EditModus and do not execute Klick // Only terminate EditModus and do not execute click
// if clicked inside our window, // if clicked inside our window,
if ( IsInEditMode() ) if ( IsInEditMode() )
{ {
......
...@@ -798,7 +798,7 @@ void FormatLine(UCHAR* TBuf, sal_uInt16& Index, ObjTextType& Atr0, ObjTextType& ...@@ -798,7 +798,7 @@ void FormatLine(UCHAR* TBuf, sal_uInt16& Index, ObjTextType& Atr0, ObjTextType&
switch (Just) { switch (Just) {
case THJustLeft: break; // left case THJustLeft: break; // left
case THJustCenter: { case THJustCenter: {
BoxRest=BoxRest /2; // middel BoxRest=BoxRest /2; // middle
for (i=1;i<=nChars;i++) Line[i]=Line[i]+BoxRest; for (i=1;i<=nChars;i++) Line[i]=Line[i]+BoxRest;
} break; } break;
case THJustRight: { // right case THJustRight: { // right
......
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