Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix spelling in code comments and descriptions only #207

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions main/crashrep/source/unx/main.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -1028,7 +1028,7 @@ static bool setup_version()
}

#if 0
// Use gconftool-2 to determine if gnome accessiblity is enabled
// Use gconftool-2 to determine if gnome accessibility is enabled
// unused
static bool get_accessibility_state()
{
Expand All @@ -1054,7 +1054,7 @@ int main( int argc, char** argv )

setup_program_dir( argv[0] );

// Don't start if accessiblity is enabled or report server is not given
// Don't start if accessibility is enabled or report server is not given

if ( setup_version() )
{
Expand Down
6 changes: 3 additions & 3 deletions main/dbaccess/prj/dbu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
<component-description>
<author>Ocke Janssen</author>
<name>org.openoffice.comp.dbu.JoinViewAccessibility</name>
<description>Represents the accessiblity view port for the connection and the tables in the query design.</description>
<description>Represents the accessibility view port for the connection and the tables in the query design.</description>
<loader-name>com.sun.star.loader.SharedLibrary</loader-name>
<language>c++</language>
<status value="final"/>
Expand All @@ -116,7 +116,7 @@
<component-description>
<author>Ocke Janssen</author>
<name>org.openoffice.comp.dbu.TableWindowAccessibility</name>
<description>Represents the accessiblity object for a table in the query design.</description>
<description>Represents the accessibility object for a table in the query design.</description>
<loader-name>com.sun.star.loader.SharedLibrary</loader-name>
<language>c++</language>
<status value="final"/>
Expand All @@ -126,7 +126,7 @@
<component-description>
<author>Ocke Janssen</author>
<name>org.openoffice.comp.dbu.ConnectionLineAccessibility</name>
<description>Represents the accessiblity object for the connection between two tables in the query design.</description>
<description>Represents the accessibility object for the connection between two tables in the query design.</description>
<loader-name>com.sun.star.loader.SharedLibrary</loader-name>
<language>c++</language>
<status value="final"/>
Expand Down
2 changes: 1 addition & 1 deletion main/editeng/inc/editeng/AccessibleContextBase.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public:
virtual ~AccessibleContextBase (void);


/** Call all accessiblity event listeners to inform them about the
/** Call all accessibility event listeners to inform them about the
specified event.
@param aEventId
Id of the event type.
Expand Down
2 changes: 1 addition & 1 deletion main/jvmfwk/inc/jvmfwk/framework.h
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@ JVMFWK_DLLPUBLIC javaFrameworkError SAL_CALL jfw_isVMRunning(sal_Bool *bRunning)
be put into the javavendors.xml file.<br/>
The function uses the plug-in libraries to obtain information about JRE
installation and checks if they there is one among them that supports
a set of features (currently only accessibilty is possible). If none was
a set of features (currently only accessibility is possible). If none was
found then it also uses a list of paths, which have been registered
by <code>jfw_addJRELocation</code> or <code>jfw_setJRELocations</code>
to find JREs. Found JREs are examined in the same way.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module com { module sun { module star { module accessibility {

/** Indicates invalid or unavailable state information.

<p>This exception is thrown to indicate the an accessibilty component
<p>This exception is thrown to indicate that an accessibility component
has been queried for state information that it can not provide. Used by
<member>XAccessibleContext::getLocale</member>.</p>

Expand Down
2 changes: 1 addition & 1 deletion main/sc/source/ui/inc/fieldwnd.hxx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ private:
/** Draws the insertion cursor. */
void DrawInsertionCursor( OutputDevice& rDev );

/** Returns a reference to the accessiblity object, if still alive. */
/** Returns a reference to the accessibility object, if still alive. */
::rtl::Reference< ScAccessibleDataPilotControl > GetAccessibleControl();

DECL_LINK( ScrollHdl, ScrollBar* );
Expand Down
2 changes: 1 addition & 1 deletion main/sw/source/core/access/accportions.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -663,7 +663,7 @@ sal_uInt16 SwAccessiblePortionData::FillSpecialPos(
sAccessibleString.getStr()[nPos]) )
{
// case 1: a one-character, non-text portion
// reference position is the first accessibilty for our
// reference position is the first accessibility for our
// core portion
nRefPos = aAccessiblePositions[ nCorePortionNo ];
nExtend = SP_EXTEND_RANGE_NONE;
Expand Down
4 changes: 2 additions & 2 deletions main/vcl/source/window/dockmgr.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -580,12 +580,12 @@ ImplPopupFloatWin::~ImplPopupFloatWin()

::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible > ImplPopupFloatWin::CreateAccessible()
{
// switch off direct accessibilty support for this window
// switch off direct accessibility support for this window

// this is to avoid appearance of this window as standalone window in the accessibility hierarchy
// as this window is only used as a helper for subtoolbars that are not teared-off, the parent toolbar
// has to provide accessibility support (as implemented in the toolkit)
// so the contained toolbar should appear as child of the correponsing toolbar item of the parent toolbar
// so the contained toolbar should appear as child of the corresponding toolbar item of the parent toolbar
return ::com::sun::star::uno::Reference< ::com::sun::star::accessibility::XAccessible >();
}

Expand Down