summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2019-09-05 23:17:53 +0200
committerJulien Nabet <serval2412@yahoo.fr>2019-09-06 09:15:58 +0200
commit22ef2a15bb5cae4b877449237bb8d3e41f2d49db (patch)
tree170b77935be16e2d4bdb8fd72e0fa576d4f68ea0 /fpicker
parentc12c84e6d8f26b7c7dfd4d0daa642879b435d2c6 (diff)
Fixing "...."
Change-Id: Id005a7531d546dd43de13b49bcb3e93081c5ad8d Reviewed-on: https://gerrit.libreoffice.org/78679 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/office/commonpicker.cxx6
-rw-r--r--fpicker/source/office/iodlg.cxx4
2 files changed, 5 insertions, 5 deletions
diff --git a/fpicker/source/office/commonpicker.cxx b/fpicker/source/office/commonpicker.cxx
index 7751cf25316b..6168a74d2327 100644
--- a/fpicker/source/office/commonpicker.cxx
+++ b/fpicker/source/office/commonpicker.cxx
@@ -226,7 +226,7 @@ namespace svt
}
// _and_ add as event listener to the parent - in case the parent is destroyed
- // before we are disposed, our disposal would access dead VCL windows then ....
+ // before we are disposed, our disposal would access dead VCL windows then...
m_xDialogParent = VCLUnoHelper::GetInterface( m_pDlg->GetParent() );
OSL_ENSURE( m_xDialogParent.is() || !m_pDlg->GetParent(), "OCommonPicker::createFileDialog: invalid window component (the parent this time)!" );
if ( m_xDialogParent.is() )
@@ -377,11 +377,11 @@ namespace svt
// Thus we post ourself a message for cancelling the dialog. This way, the message
// is either handled in the thread which opened the dialog (which may even be
// this thread here), or, if no dialog is open, in the thread doing scheduling
- // currently. Both is okay for us ....
+ // currently. Both is okay for us...
// Note that we could do check if we are really executing the dialog currently.
// but the information would be potentially obsolete at the moment our event
- // arrives, so we need to check it there, anyway ...
+ // arrives, so we need to check it there, anyway...
m_nCancelEvent = Application::PostUserEvent( LINK( this, OCommonPicker, OnCancelPicker ) );
}
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx
index b8f587ca2a6a..d22bbcf0c45f 100644
--- a/fpicker/source/office/iodlg.cxx
+++ b/fpicker/source/office/iodlg.cxx
@@ -184,7 +184,7 @@ namespace
void lcl_autoUpdateFileExtension( SvtFileDialog* _pDialog, const OUString& _rLastFilterExt )
{
- // if auto extension is enabled ....
+ // if auto extension is enabled...
if ( _pDialog->isAutoExtensionEnabled() )
{
// automatically switch to the extension of the (maybe just newly selected) extension
@@ -862,7 +862,7 @@ void SvtFileDialog::OpenHdl_Impl(void const * pVoid)
if ( aFileName.isEmpty() )
{
- // if an entry is selected in the view ....
+ // if an entry is selected in the view...
if ( _pFileView->GetSelectionCount() )
{ // -> use this one. This will allow us to step down this folder
aFileName = _pFileView->GetCurrentURL();