summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-05 18:47:55 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-06 09:05:50 +0200
commit73e3604fc16695758b9a7f55051d2f786f74be2d (patch)
tree357784a45ad575a8de6d6d9450fb18190091c873 /vcl
parent396473a3d6ddd1f1ee2d4e0fd3bae5c41d2cc3fd (diff)
Fixing '....' and '..'
Change-Id: I926069d6c1f2712e5020d930f7ff6c62fd00e912 Reviewed-on: https://gerrit.libreoffice.org/78667 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/app/svapp.cxx2
-rw-r--r--vcl/source/control/edit.cxx2
-rw-r--r--vcl/source/control/fmtfield.cxx6
-rw-r--r--vcl/source/control/wizardmachine.cxx22
-rw-r--r--vcl/source/edit/texteng.cxx6
-rw-r--r--vcl/source/filter/ixpm/xpmread.cxx2
-rw-r--r--vcl/source/treelist/svimpbox.cxx2
-rw-r--r--vcl/source/window/brdwin.cxx2
-rw-r--r--vcl/source/window/floatwin.cxx2
-rw-r--r--vcl/source/window/window.cxx2
-rw-r--r--vcl/unx/generic/print/printerjob.cxx2
11 files changed, 25 insertions, 25 deletions
diff --git a/vcl/source/app/svapp.cxx b/vcl/source/app/svapp.cxx
index e0846a5ecec7..c3d24c8a6994 100644
--- a/vcl/source/app/svapp.cxx
+++ b/vcl/source/app/svapp.cxx
@@ -1366,7 +1366,7 @@ vcl::Window* Application::GetDefDialogParent()
return pWin->mpWindowImpl->mpFrameWindow->ImplGetWindow();
}
- // first visible top window (may be totally wrong....)
+ // first visible top window (may be totally wrong...)
pWin = pSVData->maWinData.mpFirstFrame;
while (pWin)
{
diff --git a/vcl/source/control/edit.cxx b/vcl/source/control/edit.cxx
index 37c135fbd1bd..d55d1cd24fa0 100644
--- a/vcl/source/control/edit.cxx
+++ b/vcl/source/control/edit.cxx
@@ -2945,7 +2945,7 @@ void Edit::dragOver( const css::datatransfer::dnd::DropTargetDragEvent& rDTDE )
if ( ( aMousePos.X() < 0 ) || ( aMousePos.X() > aOutSize.Width() ) )
{
// Scroll?
- // No, I will not receive events in this case....
+ // No, I will not receive events in this case...
}
*/
diff --git a/vcl/source/control/fmtfield.cxx b/vcl/source/control/fmtfield.cxx
index 4a87fb979455..cb4f0c68ca5f 100644
--- a/vcl/source/control/fmtfield.cxx
+++ b/vcl/source/control/fmtfield.cxx
@@ -1206,9 +1206,9 @@ void DoubleCurrencyField::UpdateCurrencyFormat()
sTemp.append("] ");
sTemp.append(sNewFormat);
- // for negative values : $ -0.00, not -$ 0.00 ...
- // (the real solution would be a possibility to choose a "positive currency format" and a "negative currency format" ...
- // But not now ... (and hey, you could take a formatted field for this ....))
+ // for negative values : $ -0.00, not -$ 0.00...
+ // (the real solution would be a possibility to choose a "positive currency format" and a "negative currency format"...
+ // But not now... (and hey, you could take a formatted field for this...))
// FS - 31.03.00 74642
sTemp.append(";[$");
sTemp.append(sSymbol);
diff --git a/vcl/source/control/wizardmachine.cxx b/vcl/source/control/wizardmachine.cxx
index 0b8544bfd915..758ba1c4c67a 100644
--- a/vcl/source/control/wizardmachine.cxx
+++ b/vcl/source/control/wizardmachine.cxx
@@ -486,8 +486,8 @@ namespace vcl
if ( !ShowPage( nCurrentState ) )
{
// argh! prepareLeaveCurrentPage succeeded, determineNextState succeeded,
- // but ShowPage doesn't? Somebody behaves very strange here ....
- OSL_FAIL( "OWizardMachine::skipUntil: very unpolite ...." );
+ // but ShowPage doesn't? Somebody behaves very strange here...
+ OSL_FAIL( "OWizardMachine::skipUntil: very unpolite..." );
m_pImpl->aStateHistory = aOldStateHistory;
return false;
}
@@ -517,11 +517,11 @@ namespace vcl
if (!ShowPage(nCurrentState))
{
// TODO: this leaves us in a state where we have no current page and an inconsistent state history.
- // Perhaps we should rollback the skipping here ....
- OSL_FAIL("OWizardMachine::skip: very unpolite ....");
- // if somebody does a skip and then does not allow to leave ...
+ // Perhaps we should rollback the skipping here...
+ OSL_FAIL("OWizardMachine::skip: very unpolite...");
+ // if somebody does a skip and then does not allow to leave...
// (can't be a commit error, as we've already committed the current page. So if ShowPage fails here,
- // somebody behaves really strange ...)
+ // somebody behaves really strange...)
return;
}
@@ -991,8 +991,8 @@ namespace vcl
if ( !ShowPage( nCurrentState ) )
{
// argh! prepareLeaveCurrentPage succeeded, determineNextState succeeded,
- // but ShowPage doesn't? Somebody behaves very strange here ....
- OSL_FAIL( "WizardMachine::skipUntil: very unpolite ...." );
+ // but ShowPage doesn't? Somebody behaves very strange here...
+ OSL_FAIL( "WizardMachine::skipUntil: very unpolite..." );
m_pImpl->aStateHistory = aOldStateHistory;
return false;
}
@@ -1021,9 +1021,9 @@ namespace vcl
if (!ShowPage(nCurrentState))
{
// TODO: this leaves us in a state where we have no current page and an inconsistent state history.
- // Perhaps we should rollback the skipping here ....
- OSL_FAIL("OWizardMachine::skip: very unpolite ....");
- // if somebody does a skip and then does not allow to leave ...
+ // Perhaps we should rollback the skipping here...
+ OSL_FAIL("OWizardMachine::skip: very unpolite...");
+ // if somebody does a skip and then does not allow to leave...
// (can't be a commit error, as we've already committed the current page. So if ShowPage fails here,
// somebody behaves really strange ...)
return;
diff --git a/vcl/source/edit/texteng.cxx b/vcl/source/edit/texteng.cxx
index 0b5303fcf9e4..135f86d1ef0a 100644
--- a/vcl/source/edit/texteng.cxx
+++ b/vcl/source/edit/texteng.cxx
@@ -174,7 +174,7 @@ void TextEngine::SetFont( const vcl::Font& rFont )
maFont = rFont;
// #i40221# As the font's color now defaults to transparent (since i35764)
// we have to choose a useful textcolor in this case.
- // Otherwise maTextColor and maFont.GetColor() are both transparent....
+ // Otherwise maTextColor and maFont.GetColor() are both transparent...
if( rFont.GetColor() == COL_TRANSPARENT )
maTextColor = COL_BLACK;
else
@@ -559,7 +559,7 @@ TextPaM TextEngine::ImpDeleteText( const TextSelection& rSel )
pPortion->MarkSelectionInvalid( aStartPaM.GetIndex() );
}
- // the beginning of EndNodes....
+ // the beginning of EndNodes...
nEndNode = nStartNode+1; // the other paragraphs were deleted
nChars = aEndPaM.GetIndex();
if ( nChars )
@@ -572,7 +572,7 @@ TextPaM TextEngine::ImpDeleteText( const TextSelection& rSel )
pPortion->MarkSelectionInvalid( 0 );
}
- // connect....
+ // connect...
aStartPaM = ImpConnectParagraphs( nStartNode, nEndNode );
}
else
diff --git a/vcl/source/filter/ixpm/xpmread.cxx b/vcl/source/filter/ixpm/xpmread.cxx
index 5b2ad3592703..85a9bfd18a8e 100644
--- a/vcl/source/filter/ixpm/xpmread.cxx
+++ b/vcl/source/filter/ixpm/xpmread.cxx
@@ -561,7 +561,7 @@ bool XPMReader::ImplGetPara ( sal_uLong nNumb )
// The next string is read and stored in mpStringBuf (terminated with 0);
// mnStringSize contains the size of the string read.
-// Comments like '//' and '/*....*/' are skipped.
+// Comments like '//' and '/*...*/' are skipped.
bool XPMReader::ImplGetString()
{
diff --git a/vcl/source/treelist/svimpbox.cxx b/vcl/source/treelist/svimpbox.cxx
index 2e24f0f34d14..5595d9bcb19d 100644
--- a/vcl/source/treelist/svimpbox.cxx
+++ b/vcl/source/treelist/svimpbox.cxx
@@ -760,7 +760,7 @@ SvTreeListEntry* SvImpLBox::GetClickedEntry( const Point& rPoint ) const
if ( !m_pView->GetModel() )
// this is quite impossible. Nevertheless, stack traces from the crash reporter
// suggest it isn't. Okay, make it safe, and wait for somebody to reproduce it
- // reliably :-\ ....
+ // reliably :-\ ...
// #122359# / 2005-05-23 / frank.schoenheit@sun.com
return nullptr;
if( m_pView->GetEntryCount() == 0 || !m_pStartEntry || !m_pView->GetEntryHeight())
diff --git a/vcl/source/window/brdwin.cxx b/vcl/source/window/brdwin.cxx
index fe5a34f942e3..2717803978df 100644
--- a/vcl/source/window/brdwin.cxx
+++ b/vcl/source/window/brdwin.cxx
@@ -703,7 +703,7 @@ void ImplSmallBorderWindowView::DrawWindow(vcl::RenderContext& rRenderContext, c
bNativeOK = rRenderContext.DrawNativeControl(aCtrlType, aCtrlPart, aCtrlRegion, nState, aControlValue, OUString());
// if the native theme draws the spinbuttons in one call, make sure the proper settings
- // are passed, this might force a redraw though.... (TODO: improve)
+ // are passed, this might force a redraw though... (TODO: improve)
if ((aCtrlType == ControlType::Spinbox) && !pCtrl->IsNativeControlSupported(ControlType::Spinbox, ControlPart::ButtonUp))
{
Edit* pEdit = static_cast<Edit*>(pCtrl)->GetSubEdit();
diff --git a/vcl/source/window/floatwin.cxx b/vcl/source/window/floatwin.cxx
index 55db2be8f593..198ac87de9d8 100644
--- a/vcl/source/window/floatwin.cxx
+++ b/vcl/source/window/floatwin.cxx
@@ -240,7 +240,7 @@ Point FloatingWindow::ImplCalcPos(vcl::Window* pWindow,
tools::Rectangle aScreenRect = pWindow->ImplGetFrameWindow()->GetDesktopRectPixel();
FloatingWindow *pFloatingWindow = dynamic_cast<FloatingWindow*>( pWindow );
- // convert....
+ // convert...
vcl::Window* pW = pWindow;
if ( pW->mpWindowImpl->mpRealParent )
pW = pW->mpWindowImpl->mpRealParent;
diff --git a/vcl/source/window/window.cxx b/vcl/source/window/window.cxx
index e9cff73fbe58..2a33b81c71d9 100644
--- a/vcl/source/window/window.cxx
+++ b/vcl/source/window/window.cxx
@@ -2237,7 +2237,7 @@ void Window::Show(bool bVisible, ShowFlags nFlags)
else
{
// inherit native widget flag for form controls
- // required here, because frames never show up in the child hierarchy - which should be fixed....
+ // required here, because frames never show up in the child hierarchy - which should be fixed...
// eg, the drop down of a combobox which is a system floating window
if( mpWindowImpl->mbFrame && GetParent() && GetParent()->IsCompoundControl() &&
GetParent()->IsNativeWidgetEnabled() != IsNativeWidgetEnabled() &&
diff --git a/vcl/unx/generic/print/printerjob.cxx b/vcl/unx/generic/print/printerjob.cxx
index 4b00e8924b47..c0abcf3e9814 100644
--- a/vcl/unx/generic/print/printerjob.cxx
+++ b/vcl/unx/generic/print/printerjob.cxx
@@ -190,7 +190,7 @@ removeSpoolDir (const OUString& rSpoolDir)
if( osl::File::E_None != osl::File::getSystemPathFromFileURL( rSpoolDir, aSysPath ) )
{
// Conversion did not work, as this is quite a dangerous action,
- // we should abort here ....
+ // we should abort here...
OSL_FAIL( "psprint: couldn't remove spool directory" );
return;
}