Fix typos
Change-Id: I9d2c641b485c32ddccf0bfaaed1d0796572d1d33 Reviewed-on: https://gerrit.libreoffice.org/39477 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Eike Rathke <erack@redhat.com>
This commit is contained in:
parent
e16304c46f
commit
26b52972a8
7 changed files with 12 additions and 12 deletions
|
@ -224,8 +224,8 @@ inline llvm::StringRef getImmediateMacroNameForDiagnostics(
|
|||
using namespace clang;
|
||||
// Verbatim copy from Clang's lib/Lex/Lexer.cpp:
|
||||
|
||||
assert(Loc.isMacroID() && "Only reasonble to call this on macros");
|
||||
// Walk past macro argument expanions.
|
||||
assert(Loc.isMacroID() && "Only reasonable to call this on macros");
|
||||
// Walk past macro argument expansion.
|
||||
while (SM.isMacroArgExpansion(Loc))
|
||||
Loc = SM.getImmediateExpansionRange(Loc).first;
|
||||
|
||||
|
|
|
@ -703,7 +703,7 @@ void ScNavigatorDlg::SetCurrentCell( SCCOL nColNo, SCROW nRowNo )
|
|||
bUnmark = !pViewData->GetMarkData().IsCellMarked( nColNo, nRowNo );
|
||||
|
||||
SfxStringItem aPosItem( SID_CURRENTCELL, aAddr );
|
||||
SfxBoolItem aUnmarkItem( FN_PARAM_1, bUnmark ); // cancel selektion
|
||||
SfxBoolItem aUnmarkItem( FN_PARAM_1, bUnmark ); // cancel selection
|
||||
|
||||
rBindings.GetDispatcher()->ExecuteList(SID_CURRENTCELL,
|
||||
SfxCallMode::SYNCHRON | SfxCallMode::RECORD,
|
||||
|
|
|
@ -447,7 +447,7 @@ void SfxRequest::Done
|
|||
|
||||
[Note]
|
||||
|
||||
'Done ()' is not called, for example when a dialoge started by the function
|
||||
'Done ()' is not called, for example when a dialog started by the function
|
||||
was canceled by the user or if the execution could not be performed due to
|
||||
a wrong context (without use of separate <SfxShell>s). 'Done ()' will be
|
||||
launched, when executing the function led to a regular error
|
||||
|
|
|
@ -354,7 +354,7 @@ void SfxShell::Activate
|
|||
FALSE
|
||||
the <SfxViewFrame>, on which SfxDispatcher
|
||||
the SfxShell instance is located, was
|
||||
activated. (for example by a closing dialoge) */
|
||||
activated. (for example by a closing dialog) */
|
||||
)
|
||||
{
|
||||
BroadcastContextForActivation(true);
|
||||
|
@ -371,7 +371,7 @@ void SfxShell::Deactivate
|
|||
FALSE
|
||||
the <SfxViewFrame>, on which SfxDispatcher
|
||||
the SfxShell instance is located, was
|
||||
deactivated. (for example by a dialoge) */
|
||||
deactivated. (for example by a dialog) */
|
||||
)
|
||||
{
|
||||
BroadcastContextForActivation(false);
|
||||
|
|
|
@ -22,16 +22,16 @@
|
|||
|
||||
#include "rcid.hrc"
|
||||
|
||||
// Dialoge ******************************************************************
|
||||
// Dialogs
|
||||
|
||||
#define STR_QUERY_SPELL_CONTINUE (RC_DIALOG_BEGIN + 11)
|
||||
#define STR_SPELLING_COMPLETED (RC_DIALOG_BEGIN + 12)
|
||||
|
||||
// Strings ******************************************************************
|
||||
// Strings
|
||||
|
||||
#define STR_CLOSELINKMSG (RC_DIALOG_BEGIN + 3)
|
||||
|
||||
// Bereiche *****************************************************************
|
||||
// Bereiche
|
||||
|
||||
#define RC_REGIONSW_BEGIN (RC_DIALOG_BEGIN + 60)
|
||||
// RC_REGIONSW_END (RC_DIALOG_BEGIN + 79)
|
||||
|
@ -42,7 +42,7 @@
|
|||
#define RC_DLG_ADDR (RC_DIALOG_BEGIN + 90)
|
||||
#define RC_SWDLG_BACKGROUND (RC_DIALOG_BEGIN + 91)
|
||||
#define RC_DLG_SWNUMFMTDLG (RC_DIALOG_BEGIN + 92)
|
||||
// Ueberlaufpruefung ********************************************************
|
||||
// Ueberlaufpruefung
|
||||
|
||||
#define DIALOG_ACT_END RC_MACASSGN_END
|
||||
|
||||
|
|
|
@ -305,7 +305,7 @@ public:
|
|||
Although (0,TRUE) is kind of a standard, the parameters are not defaulted here
|
||||
in order to force more conscious use especially of bStopAtFly. */
|
||||
FrameTypeFlags GetFrameType( const Point *pPt, bool bStopAtFly ) const;
|
||||
FrameTypeFlags GetSelFrameType() const; //Selektion (Drawing)
|
||||
FrameTypeFlags GetSelFrameType() const; //Selection (Drawing)
|
||||
|
||||
/** check whether selected frame contains a control;
|
||||
* companion method to GetSelFrameType, used for preventing
|
||||
|
|
|
@ -4247,7 +4247,7 @@ void AttributeOutputBase::FormatColumns( const SwFormatCol& rCol )
|
|||
short nDiff = nColWidth -
|
||||
rCol.CalcPrtColWidth( n, (sal_uInt16)nPageSize );
|
||||
|
||||
if ( nDiff > 10 || nDiff < -10 ) // Toleranz: 10 tw
|
||||
if ( nDiff > 10 || nDiff < -10 ) // Tolerance: 10 tw
|
||||
{
|
||||
bEven = false;
|
||||
break;
|
||||
|
|
Loading…
Reference in a new issue