summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/filter/msfilter/svdfppt.hxx2
-rw-r--r--lotuswordpro/source/filter/xfilter/xfdrawobj.hxx2
-rw-r--r--lotuswordpro/source/filter/xfilter/xfparastyle.hxx14
-rw-r--r--odk/examples/DevelopersGuide/Database/CodeSamples.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java2
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java4
-rw-r--r--odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java2
-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/SayHello/build.xml2
-rw-r--r--odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/build.xml2
-rw-r--r--offapi/com/sun/star/accessibility/AccessibleEventId.idl2
-rw-r--r--offapi/com/sun/star/chart/Diagram.idl2
-rw-r--r--offapi/com/sun/star/util/PathSubstitution.idl2
-rw-r--r--officecfg/registry/schema/org/openoffice/Office/Common.xcs2
-rw-r--r--qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java6
-rw-r--r--shell/source/win32/spsupp/COMOpenDocuments.cxx2
15 files changed, 24 insertions, 24 deletions
diff --git a/include/filter/msfilter/svdfppt.hxx b/include/filter/msfilter/svdfppt.hxx
index d83be89a1405..f6f1c493e822 100644
--- a/include/filter/msfilter/svdfppt.hxx
+++ b/include/filter/msfilter/svdfppt.hxx
@@ -238,7 +238,7 @@ struct PptSlidePersistAtom
sal_uInt32 nFlags;
sal_uInt32 nNumberTexts;
sal_uInt32 nSlideId;
- sal_uInt32 nReserved; // we will use nReserved temporarly to set the offset to SSSlideInfoAtom ( if possible )
+ sal_uInt32 nReserved; // we will use nReserved temporarily to set the offset to SSSlideInfoAtom ( if possible )
public:
PptSlidePersistAtom() { Clear(); }
diff --git a/lotuswordpro/source/filter/xfilter/xfdrawobj.hxx b/lotuswordpro/source/filter/xfilter/xfdrawobj.hxx
index 3c4292acac7f..3d0760b6ae43 100644
--- a/lotuswordpro/source/filter/xfilter/xfdrawobj.hxx
+++ b/lotuswordpro/source/filter/xfilter/xfdrawobj.hxx
@@ -74,7 +74,7 @@
* Base class for all drawing object(ellipse,rect,circle,...).
* I can set Positions,anchor,rotate,text style name here.
*
- * Drawing objects can be rotated,scaled and skewed, drawing objects must have positions setted,
+ * Drawing objects can be rotated, scaled and skewed, drawing objects must have positions set,
* you can use SetPosition(...).
*/
class XFDrawObject : public XFFrame
diff --git a/lotuswordpro/source/filter/xfilter/xfparastyle.hxx b/lotuswordpro/source/filter/xfilter/xfparastyle.hxx
index 07f4c7081a07..c73e34661de2 100644
--- a/lotuswordpro/source/filter/xfilter/xfparastyle.hxx
+++ b/lotuswordpro/source/filter/xfilter/xfparastyle.hxx
@@ -102,7 +102,7 @@ public:
public:
/**
- * @descr Set layout for the paragraph.When such property was setted, this paragraph will
+ * @descr Set layout for the paragraph. When such property was set, this paragraph will
* start at an new page.
*/
void SetMasterPage(const OUString& master);
@@ -111,7 +111,7 @@ public:
/**
* @descr set the paragraph default font.
- * @param font font object to be setted.Font object are deleted by font-factory,so
+ * @param font object to be set. Font object is deleted by font-factory, so
* don't delete it in the destructure function of para style.
*/
void SetFont(rtl::Reference<XFFont> const & font);
@@ -122,14 +122,14 @@ public:
const rtl::Reference<XFFont>& GetFont(){ return m_pFont; }
/**
- * @descr Set the indent of the paragraph.This is the indent for
+ * @descr Set the indent of the paragraph. This is the indent for
the first line.
* @param indent value of the first-line indent.
*/
void SetIndent(double indent );
/**
- * @descr Set the padding of the paragraph.This is the distance
+ * @descr Set the padding of the paragraph. This is the distance
between the border and the top of the text.
* @param indent value of the padding.
*/
@@ -149,7 +149,7 @@ public:
void SetAlignType(enumXFAlignType eAlign);
/**
- * @descr Set the shadow of the paragraph.there is 4 positions, you
+ * @descr Set the shadow of the paragraph. There are 4 positions, you
can find it in the definition of enumShadowPos.
* @param pos
* @param offset the distance between the paragraph border and the shadow.
@@ -158,7 +158,7 @@ public:
void SetShadow(enumXFShadowPos pos, double offset, XFColor& color);
/**
- * @descr The borders is complex,so you have to create one before use.
+ * @descr The borders is complex, so you have to create one before use.
Very few paragraphs will readly have borders property,this way
we can save much memory.
* @param pBorders borders of the paragraph,please reference the XFBorders.
@@ -202,7 +202,7 @@ public:
void AddTabStyle(enumXFTab type, double len, sal_Unicode leader, sal_Unicode delimiter);
/**
- * @descr for para style copy operator,sometimes you may need to override tab styles.
+ * @descr for para style copy operator, sometimes you may need to override tab styles.
*/
void ClearTabStyles();
diff --git a/odk/examples/DevelopersGuide/Database/CodeSamples.java b/odk/examples/DevelopersGuide/Database/CodeSamples.java
index c40496ea5932..094901feb259 100644
--- a/odk/examples/DevelopersGuide/Database/CodeSamples.java
+++ b/odk/examples/DevelopersGuide/Database/CodeSamples.java
@@ -112,7 +112,7 @@ public class CodeSamples
System.exit(0);
}
- // check if the connection is not null aand dispose it later on.
+ // check if the connection is not null and dispose it later on.
public static void checkConnection(XConnection con)
{
if(con != null)
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
index f91f7d8f7ecc..12246aca65a4 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/DocumentView.java
@@ -206,7 +206,7 @@ public class DocumentView extends JFrame
public void createFrame()
{
// create view frame (as a XFrame!) here
- // Look for right view mode setted by user command line parameter.
+ // Look for right view mode set by user command line parameter.
// First try to get a new unambigous frame name from our global ViewContainer.
if(ViewContainer.mbInplace)
{
diff --git a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
index 72ec89a1e8c1..c3afb6061999 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/DesktopEnvironment/StatusView.java
@@ -220,8 +220,8 @@ public class StatusView extends JPanel
return;
// create some listener on given frame for available status events
- // Created listener instances will register herself on this frame and
- // show her received information automatically on setted UI controls.
+ // Created listener instances will register themselves on this frame and
+ // show it received information automatically on set UI controls.
m_aFontListener = new StatusListener(m_laFontValue ,FONT_ON ,FONT_OFF ,xFrame, FEATUREURL_FONT );
m_aSizeListener = new StatusListener(m_laSizeValue ,SIZE_ON ,SIZE_OFF ,xFrame, FEATUREURL_SIZE );
m_aBoldListener = new StatusListener(m_laBoldValue ,BOLD_ON ,BOLD_OFF ,xFrame, FEATUREURL_BOLD );
diff --git a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
index a560d51fdc69..3a233957b240 100644
--- a/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
+++ b/odk/examples/DevelopersGuide/OfficeDev/FilterDevelopment/AsciiFilter/FilterOptions.java
@@ -163,7 +163,7 @@ public class FilterOptions
catch(com.sun.star.lang.IllegalArgumentException exConvert)
{
// ONE argument has the wrong type
- // But I think we mustn't react here - because we setted
+ // But I think we mustn't react here - because we set
// default values for every necessary item we need.
// In case this exception occurs - this default exist
// and we can live with it.
diff --git a/odk/examples/DevelopersGuide/ScriptingFramework/SayHello/build.xml b/odk/examples/DevelopersGuide/ScriptingFramework/SayHello/build.xml
index 93e358785121..ae23fae58857 100644
--- a/odk/examples/DevelopersGuide/ScriptingFramework/SayHello/build.xml
+++ b/odk/examples/DevelopersGuide/ScriptingFramework/SayHello/build.xml
@@ -23,7 +23,7 @@
<property name="macroname" value="SayHello"/>
<property name="unopkgfile" value="${basedir}/${macroname}.uno.pkg"/>
- <!-- ==================== intialise properties ========================= -->
+ <!-- ==================== initialise properties ========================= -->
<target name="checksdk">
<condition property="UsingSDK">
<available file="${env.OFFICE_PROGRAM_PATH}"/>
diff --git a/odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/build.xml b/odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/build.xml
index 7979b231445f..88e0b8b60518 100644
--- a/odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/build.xml
+++ b/odk/examples/DevelopersGuide/ScriptingFramework/ScriptSelector/build.xml
@@ -23,7 +23,7 @@
<property name="macroname" value="ScriptSelector"/>
<property name="unopkgfile" value="${basedir}/${macroname}.uno.pkg"/>
- <!-- ==================== intialise properties ========================= -->
+ <!-- ==================== initialise properties ========================= -->
<target name="checksdk">
<condition property="UsingSDK">
<available file="${env.OFFICE_PROGRAM_PATH}"/>
diff --git a/offapi/com/sun/star/accessibility/AccessibleEventId.idl b/offapi/com/sun/star/accessibility/AccessibleEventId.idl
index 741e55c38c78..99739211663b 100644
--- a/offapi/com/sun/star/accessibility/AccessibleEventId.idl
+++ b/offapi/com/sun/star/accessibility/AccessibleEventId.idl
@@ -374,7 +374,7 @@ constants AccessibleEventId
const short LISTBOX_ENTRY_COLLAPSED = 33;
/** Constant used to determine when the active descendant of a component
- has been removed but unlike ACTIVE_DECENDANT_CHANGED the decendant
+ has been removed but unlike ACTIVE_DESCENDANT_CHANGED the descendant
that is to be removed does not have focus. The active descendant
is used in objects with transient children.
diff --git a/offapi/com/sun/star/chart/Diagram.idl b/offapi/com/sun/star/chart/Diagram.idl
index 76f31b00c78f..023517a87eb5 100644
--- a/offapi/com/sun/star/chart/Diagram.idl
+++ b/offapi/com/sun/star/chart/Diagram.idl
@@ -49,7 +49,7 @@ published service Diagram
interface com::sun::star::chart::XDiagram;
- /** Provides easier access to the differnet axes and their sub elements.
+ /** Provides easier access to the different axes and their sub elements.
@since OOo 3.4
*/
[optional] interface com::sun::star::chart::XAxisSupplier;
diff --git a/offapi/com/sun/star/util/PathSubstitution.idl b/offapi/com/sun/star/util/PathSubstitution.idl
index 4d719712d7c7..1cee2597ccb2 100644
--- a/offapi/com/sun/star/util/PathSubstitution.idl
+++ b/offapi/com/sun/star/util/PathSubstitution.idl
@@ -67,7 +67,7 @@ module com { module sun { module star { module util {
The only exceptions are: \$(username), \$(langid) and \$(vlang).
Therefore the service implementation should only substitute variables which
are located at the start of a provided path string or are part of a multi-path.
- This special service is not designed to be a text substiution but shall
+ This special service is not designed to be a text substitution but shall
provide (a) valid substituted path(s).
</p>
diff --git a/officecfg/registry/schema/org/openoffice/Office/Common.xcs b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
index c869ca9044c4..59e6c7ad6fb5 100644
--- a/officecfg/registry/schema/org/openoffice/Office/Common.xcs
+++ b/officecfg/registry/schema/org/openoffice/Office/Common.xcs
@@ -6431,7 +6431,7 @@
previews, etc...). EdgeBlending will visualize a one pixel border on the preview object with interpolated
colors (default: TopLeft White, BottomRight Black) so that a nice 3D effect is shown. It is a percent
value describing how strong the effect shall be. The value 0% switches it off, while the value 100% will
- cover the preview object's border completely with one pixel. Values in-between vill be alpha-blended with
+ cover the preview object's border completely with one pixel. Values in-between will be alpha-blended with
the original preview image.
</desc>
<label>Defines the EdgeBlending for Previews in Percent.</label>
diff --git a/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java b/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java
index 0b35515513e6..17f230c342b0 100644
--- a/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java
+++ b/qadevOOo/tests/java/ifc/sdb/_XSingleSelectQueryComposer.java
@@ -304,7 +304,7 @@ public class _XSingleSelectQueryComposer extends MultiMethodTest {
}
/**
- * The group which was setted by <code>setGroup</code> must be returned
+ * The group which was set by <code>setGroup</code> must be returned
* while calling from object relation <code>XQueryAna</code>
* method <code>getGroup</code>
*/
@@ -322,7 +322,7 @@ public class _XSingleSelectQueryComposer extends MultiMethodTest {
/**
- * The clause which was setted by <code>setHavingClause</code> must be returned
+ * The clause which was set by <code>setHavingClause</code> must be returned
* while calling from object relation <code>XQueryAna</code>
* method <code>getHavingClause</code>
*/
@@ -502,7 +502,7 @@ public class _XSingleSelectQueryComposer extends MultiMethodTest {
/**
* Method <code>getOrder</code> from object relation <code>xQueryAna</code>
- * checks the order which was setted while calling <code>setOrder</code>
+ * checks the order which was set while calling <code>setOrder</code>
*/
public void _setOrder() {
try{
diff --git a/shell/source/win32/spsupp/COMOpenDocuments.cxx b/shell/source/win32/spsupp/COMOpenDocuments.cxx
index b9d24405aa4f..088e6d5717cd 100644
--- a/shell/source/win32/spsupp/COMOpenDocuments.cxx
+++ b/shell/source/win32/spsupp/COMOpenDocuments.cxx
@@ -336,7 +336,7 @@ STDMETHODIMP COMOpenDocuments::PromptedOnLastOpen(
// 3 When the document is not checked out and the document library requires that documents be checked out to be edited, the user can only read the document, or check it out and edit it
// 4 When the current user has checked it out, the user can only edit the local copy of the document
STDMETHODIMP COMOpenDocuments::ViewDocument3(
- IDispatch* /*pdisp*/, // An Object that represents the window from which the ViewDocmument3 method is being activated
+ IDispatch* /*pdisp*/, // An Object that represents the window from which the ViewDocument3 method is being activated
BSTR bstrDocumentLocation, // A string that contains the URL of the document to open for reading
int /*OpenType*/, // A Long integer that specifies the rights for opening the document
VARIANT /*varProgID*/, // An optional string that contains the ProgID of the application with which to open the document. If this argument is omitted, the default viewer for the document is used