summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/contnr/svimpbox.cxx2
-rw-r--r--svtools/source/control/tabbar.cxx2
-rw-r--r--svtools/source/dialogs/wizdlg.cxx4
3 files changed, 4 insertions, 4 deletions
diff --git a/svtools/source/contnr/svimpbox.cxx b/svtools/source/contnr/svimpbox.cxx
index b53b403c80f1..24e735a11a0e 100644
--- a/svtools/source/contnr/svimpbox.cxx
+++ b/svtools/source/contnr/svimpbox.cxx
@@ -728,7 +728,7 @@ void SvImpLBox::KeyLeftRight( long nDelta )
nFlags &= (~LBoxFlags::Filling);
ShowCursor( false );
- // neuen Origin berechnen
+ // calculate new origin
long nPos = aHorSBar->GetThumbPos();
Point aOrigin( -nPos, 0 );
diff --git a/svtools/source/control/tabbar.cxx b/svtools/source/control/tabbar.cxx
index 1c623f210b97..ccad39c6253a 100644
--- a/svtools/source/control/tabbar.cxx
+++ b/svtools/source/control/tabbar.cxx
@@ -937,7 +937,7 @@ void TabBar::MouseMove(const MouseEvent& rMEvt)
void TabBar::MouseButtonDown(const MouseEvent& rMEvt)
{
- // Only terminate EditModus and do not execute click
+ // Only terminate EditMode and do not execute click
// if clicked inside our window,
if (IsInEditMode())
{
diff --git a/svtools/source/dialogs/wizdlg.cxx b/svtools/source/dialogs/wizdlg.cxx
index 20ac15d14c20..c73451896e34 100644
--- a/svtools/source/dialogs/wizdlg.cxx
+++ b/svtools/source/dialogs/wizdlg.cxx
@@ -76,7 +76,7 @@ void WizardDialog::SetEmptyViewMargin()
void WizardDialog::ImplCalcSize( Size& rSize )
{
- // ButtonBar-Hoehe berechnen
+ // calculate ButtonBar height
long nMaxHeight = 0;
ImplWizButtonData* pBtnData = mpFirstBtn;
while ( pBtnData )
@@ -90,7 +90,7 @@ void WizardDialog::ImplCalcSize( Size& rSize )
nMaxHeight += WIZARDDIALOG_BUTTON_OFFSET_Y*2;
rSize.AdjustHeight(nMaxHeight );
- // View-Window-Groesse dazurechnen
+ // add in the view window size
if ( mpViewWindow && mpViewWindow->IsVisible() )
{
Size aViewSize = mpViewWindow->GetSizePixel();